isee.NET Framework Documentation

SessionController.Session_Start Method 

This method will start the isee.NET ASP.NET Application up for each user. This method will typically be called in Global.asax code-behind Session_Start handler

[Visual Basic]
Public Shared Sub Session_Start( _
   ByVal pathToTXM As String, _
   ByVal registrationNumber As String _
)
[C#]
public static void Session_Start(
   string pathToTXM,
   string registrationNumber
);

Parameters

pathToTXM

The path and file name of the TXM file exported from ithink/STELLA. Use a Server.MapPath call to get the full path to the file.

registrationNumber

The isee.NET Framework registration number

Remarks

This method will set up an instance of the Simulation class for the current user accessing the application. The Simulation class instance will be stored in the ASP.NET Session object and exposed to any pages that inherit from iseesystems.iseeNET.Controllers.ASPNET.PageController as a property called "Simulation".

See Also

SessionController Class | iseesystems.iseeNET.Controllers.ASPNET Namespace