Hi! Please advice how to localize strings in wisej.web/wisej.core session timeout form, network is down form ... etc Thanks in advance

Answered
0
0

Hi! Please advice how to localize strings in wisej.web/wisej.core  session timeout form, network is down form … etc Thanks in advance

  • You must to post comments
Best Answer
0
0

You can handle the session timeout by handling:

Application.SessionTimeout += (s, e) => {

     e.Handled = true;

    // Show your message (not modal).

};

When the session timeout event is fired, the session is already timeout out. You still have the “session timeout” period until it is disposed and everything is lost. You can also force a session to terminate by calling Application.Exit().

You can handle any exception fired on the server side before it is sent back to the client:

Application.ThreadException += (s, e) => {


   // Display the error, or do anything you need to do.
   // Once the event is handled (attached), the system will not
   // send the exception back to the client.

};





 

  • You must to post comments
Best Answer
0
0
  • You must to post comments
0
0

Thanks it worked!

But how about other forms like

–Session timeout form– “Your session has expired” “Please close the browser”

–Invalid session form

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.