hi,,,,,,,,
I have made a web application using asp.net. i have a problem when the web page is reconstructed.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Aijaz SofiPosted Jun 16, 2011, 7:09 AM
Sessions are started everytime you assign some value to session variable and are readily available till session expires or forcibly aborted. The page postbacks does not destroy the session values. you can assign the values to session variables and can have access to them through out ur application until the session is destroyed.
if you have some other problem please explain thoroughly.
thanks
Pradeep ChandrakerPosted Jun 15, 2011, 12:02 AM
If your question is how to start the session? than the answer is - Once you add any value to session object, the session gets started, and the values will be available until session is expired. "Session.Add" method is used to add values to the session object.
Let me know if you have any specific question.