Storing the dataset of a gridview
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Which is the best method to store the dataset to access on the entire page with protected functions? ViewState, Session or Cache?
Thanks
ss.mmm wrote:
with protected functions?
What do you mean by protected functions ?
ss.mmm wrote:
ViewState, Session
I prefer session if the DataSet contains less amount of data. Viewstate will increase network bandwidth.
ss.mmm wrote:
Cache?
This can be used, but multiple users who visits your page at same time will get same results.