Friday, March 16, 2012

persistant datalayer across http requests?

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" <wtumaxi@.forum.dk> wrote in message
news:6fd6d897.0407110446.d2cc019@.posting.google.com...
> 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?
"me" <wtumaxi@.forum.dk> wrote in message
news:6fd6d897.0407110446.d2cc019@.posting.google.com...
> 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.
--
John Saunders
johnwsaundersiii at hotmail

0 comments:

Post a Comment