|
[Visual Basic]
Dim myobj As New Gestalt
Response.Write("License Details - " + myobj.License)
[C#]
Gestalt myobj = new Gestalt();
Response.Write("License Details - " + myobj.License);
The above will produce something like the following output (assuming
a trial license is in operation):
License Details - Trial License - 29 days 23:34:04 Left
|