Alternative to Session Variable

  • Thread starter Thread starter sb
  • Start date Start date
S

sb

As the session variable are not recommended, i search for an alternative to
store my classe that i use and that i store in that session variable.

is that the context that is the alternative?

thanks

Serge
 
sb said:
As the session variable are not recommended, i search for an
alternative to store my classe that i use and that i store in that
session variable.

is that the context that is the alternative?


ASP.NET's session variables are much improved over classic ASP's session
variables. There's nothing wrong with using session variables.

Other alternatives include:

Cookies, ViewState, Database

However, if the class is large and will be accesed often, I would probably
opt for session variables.
 
Back
Top