G
Guest
I have an asp.net application written in c# and in many cases when the user
submits a form or causes a postback there could be significant processing
(logic) required which results in a message being displayed to the user.
After processing server side I register a script with the clientside to use
alert('message');
to display the user message.
The problem I have is that this message will show again if the user leaves
the page and returns using the back button. How can I display the message
only once ?
submits a form or causes a postback there could be significant processing
(logic) required which results in a message being displayed to the user.
After processing server side I register a script with the clientside to use
alert('message');
to display the user message.
The problem I have is that this message will show again if the user leaves
the page and returns using the back button. How can I display the message
only once ?