Display Once Time
-
I am using JavaScript with ASP, when user sign in successful i want to javascript alert message "Sign in successful" only one time whenever user refresh page or something else I don't want to show message, please help me Regard Socheat
................
-
I am using JavaScript with ASP, when user sign in successful i want to javascript alert message "Sign in successful" only one time whenever user refresh page or something else I don't want to show message, please help me Regard Socheat
................
Use a session cookie, possibly?
"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for - in order to get to the job you need to pay for the clothes and the car, and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
-
Use a session cookie, possibly?
"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for - in order to get to the job you need to pay for the clothes and the car, and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
Would you mind if give me a code? Thanks
................
-
Would you mind if give me a code? Thanks
................
If all else fails try Google :-O http://www.google.com/search?client=opera&rls=en&q=javascript+session+cookie&sourceid=opera&ie=utf-8&oe=utf-8
"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for - in order to get to the job you need to pay for the clothes and the car, and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
-
I am using JavaScript with ASP, when user sign in successful i want to javascript alert message "Sign in successful" only one time whenever user refresh page or something else I don't want to show message, please help me Regard Socheat
................
Perhaps don't use an alert message? alert messages force the user to give attention to it before moving forward in an application, and thus disrupting the users flow of the application. Anything that does that should only be used as a last resort (and if it has to be used you might want to rethink why)
-
Perhaps don't use an alert message? alert messages force the user to give attention to it before moving forward in an application, and thus disrupting the users flow of the application. Anything that does that should only be used as a last resort (and if it has to be used you might want to rethink why)
After alert message, I want to destroy a message
................