Application Sesson Ended event / Application Exit

Answered
0
0

If I use the following code, to terminate the application, it just restarts.

private void Application_SessionTimeOut(object sender, HandledEventArgs e)
{
e.Handled = true;
Application.Exit();
}

I think this is related to calling an application together with a query string as the query string is retained.

 

  • You must to post comments
Best Answer
0
0

I tried and for me the browser is simply cleared, which is the correct behavior. Check if you have autoReload in Default.json or in Default.html.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.