persistant datalayer across http requests?

  • Thread starter Thread starter me
  • Start date Start date
M

me

I was just wondering how keep my datamodel in the
middle tier in memory across multiple http request from the client
when using asp.net/c#? It has to persist per user. What is
the best way to do this?
 
This is not the ASP.NET way. The ASP.NET way is to store in session
variables small units of data that will let you re-populate major data
components on every page build.

Eliyahu
 
me said:
I was just wondering how keep my datamodel in the
middle tier in memory across multiple http request from the client
when using asp.net/c#? It has to persist per user. What is
the best way to do this?

Session state.
 
Back
Top