Server IP : 103.6.199.200 / Your IP : 18.191.162.73 Web Server : Microsoft-IIS/10.0 System : Windows NT EMPUSA 10.0 build 20348 (Windows Server 2016) i586 User : EMPUSA$ ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Domains/jivisol1/masar.jivisolutions.com/wwwroot/ |
Upload File : |
<%@ Application Language="C#" %> <script runat="server"> public class Global_asax : System.Web.HttpApplication { void Application_Start(object sender, EventArgs e) { DevExpress.Web.ASPxWebControl.CallbackError += new EventHandler(Application_Error); } void Application_End(object sender, EventArgs e) { // Code that runs on application shutdown } void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs Server.Transfer("~/Oops.aspx"); } void Session_Start(object sender, EventArgs e) { // Code that runs when a new session is started } void Session_End(object sender, EventArgs e) { // Code that runs when a session ends. // Note: The Session_End event is raised only when the sessionstate mode // is set to InProc in the Web.config file. If session mode is set to StateServer // or SQLServer, the event is not raised. } } </script>