Custom Session
-
Hi Is there any way to configure ASP.Net, C# application to store all the session values into custom storage. Session["UserName"] = "XXX"; this has to call my own adopter and send the values rather than In-Memory/SQL Server. Thanks
-
Hi Is there any way to configure ASP.Net, C# application to store all the session values into custom storage. Session["UserName"] = "XXX"; this has to call my own adopter and send the values rather than In-Memory/SQL Server. Thanks
I don't know if this will address your question or not but it is bad practice to directly use the Session object in code. By using a static wrapper class you can have all calls to session centralized as well as strongly and statically typed (a good thing). You then have the freedom to completely control the underlying implementation. The link below addresses a custom provider. http://msdn.microsoft.com/en-us/library/ms178587.aspx[^]
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. A man said to the universe: "Sir I exist!" "However," replied the universe, "The fact has not created in me A sense of obligation." --Stephen Crane