K K-Dub Feb 17, 2005 #1 Can anyone share any "gotchas" that they may have run into using the ASPState DB that you can create from the ASP.NET sql script?
Can anyone share any "gotchas" that they may have run into using the ASPState DB that you can create from the ASP.NET sql script?
S Scott Allen Feb 17, 2005 #2 If you are moving from InProc mode to keeping session state in SQL Server - one gotcha is that the objects have to be serializable for SQL session state. The runtime will throw exceptions if the objects are not serializable. There is also some performance overhead.
If you are moving from InProc mode to keeping session state in SQL Server - one gotcha is that the objects have to be serializable for SQL session state. The runtime will throw exceptions if the objects are not serializable. There is also some performance overhead.
K Keith Patrick Feb 22, 2005 #3 If you do that, make sure you aren't depending on the Session_End event getting triggered, since it doesn't fire with that kind of session state.
If you do that, make sure you aren't depending on the Session_End event getting triggered, since it doesn't fire with that kind of session state.