GridWebのリリースまたはバージョンを取得

Aspose.Cells.GridWebのリリースまたは実行バージョンを取得する

以下のサンプルコードはAspose.Cells.GridWebの実行バージョンを検索し、ASP.NETのラベルコントロールに表示します。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Find version of GridWeb and display in label.
string version = Aspose.Cells.GridWeb.GridWeb.GetVersion();
Label1.Text = "GridWeb Version: " + version;

GridWebのクライアントサイドスクリプトファイルのバージョン番号を見つける

GridWebのクライアントサイドスクリプトファイルであるacwmain.jsのバージョン番号を見つけることもできます。acwmain.jsファイルのバージョン番号を保持する変数acw_versionが含まれています。acwmain.jsファイルのバージョン番号を以下のようにコンソールに出力できます。

For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
function GetVersion()
{
alert(acw_version);
console.log(acw_version);
return false;
}