Get GridWeb Release or Version
Contents
[
Hide
]
Please use the Aspose.Cells.GridWeb.GridWeb.GetVersion() method to get the release or running version of Aspose.Cells.GridWeb. This version will help you to find the GridWeb version on run time through code.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |