I’m using the Cache object to store the Datatable.
like as below
Cache["dt"]=dtsum;
If I store like this where cahce will store either at client side or serverside.
Previoulsy I was storing in Viewstate. But I was thinking of Viewstate that store data in page itself. so I’m storing in Cache. which will be better option.
please suggest me.
Cacheis stored in web server memory.You should understand the differences between
Viewstate,CacheandSessionhttp://www.codeproject.com/KB/aspnet/PTCacheSessionViewState.aspx