Click to See Complete Forum and Search --> : ASP Questions
Tikki
09-18-2003, 11:30 PM
Hello,
i have few doubts
1.what are session management, statemanagement in ASP?
2.what are the difference between them?
3.how do u say that ASP is Stateless?
thanks
Ribeyed
09-21-2003, 01:51 PM
hi,
i'll try answer best i can.
When a user visits your site it is called starting a session. Just means that from the moment the user enters a unique number is generated and the users complete session is logged, this is known as session management.
ASP as you have correctly mentioned is whats known as stateless which means when a page is requested/displayed in the browser the web server or the browser doesn't hold and maintain an information about the page or the user. The next time the page is requested/display it doesn't remember anything about the previous call to the page. So ASP pages don't maintain state.
Hope this helps
Tikki
09-22-2003, 01:33 PM
Hello Ribeyed,
Thanks for your Response.
i know what is session management but i don't know how toexplain it to others.but now, form your response i came to know it.
thanks once again