ASP.net Session Public Service Information

Where can you get information about ASP.NET public service eg. how it works, performance, behavior characteristics, etc. Look online but can't find detailed information or article on the topic. Thanks to

0


source to share


2 answers


Programmatically, session state is nothing more than memory in the form of a dictionary or hash table, for example. key-value pairs that can be set and read during the user's session.

Check the following links for more details:



0


source


To manage the state of SQL Server, remember that you are not calling Session["Key"]

in loops. (Try to avoid this) Because every time it accesses the session, it goes back to sqlserver.



0


source







All Articles