Difference between cache, session, application, presentation in ASP.Net

I want to store some data while browsing my site.

Sometimes I need to store big data, such as crystal reports, and sometimes I need to store a string.

So what is the best use and when to use. Where is this data stored? i.e. client or server

0
source share
3 answers

What you are asking is state management in ASP.NET. In fact, you specified server-side state management settings.

.

- MSDN . , , .

, ... http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx

+1

. Ass Julius , . , , . , , . . , , , . . , , . , , , , sql , , .

You can find a lot of information on this subject online. Hope this gives you some info.

0
source

All Articles