Get GridWeb Release or Version

Get the Release or Running Version of Aspose.Cells.GridWeb

The following sample code finds the running version of Aspose.Cells.GridWeb and prints it on ASP.NET Label Control.

// 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;

Find the version number of client side script file of GridWeb

You can also find the version number of acwmain.js which is the client side script file of GridWeb. It contains a variable acw_version which holds the version number of acwmain.js file. You can print the version number of acwmain.js file on console like this

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;
}