Intro to Sessions in ASP.Net

Posted on ASP Free See other posts from ASP Free
Published on Thu, 27 Oct 2011 00:00:00 -0400 Indexed on 2011/11/11 18:01 UTC
Read the original article Hit count: 377

Filed under:
Sessions are used to pass the value from one page to another with no effort from the user. With a session, if the user inputs values on the original page and you need to access them on another page, you can retrieve the values stored in the session without making the user submit those values again. Sessions are important to any user-related authentication (if you're using the https protocol), user-related validation and customization of visitor experiences in your website. This tutorial will use Visual Basic to illustrate ASP.NET sessions, though the code can be converted to equivalent C# code...

© ASP Free or respective owner

Related posts about ASP.NET