Currently i am storing the DataSet in a ViewState but, storing the Dataset into ViewState will have the impact on the performance of the page.

Can you'll suggest me whether i can use Session or ViewState or any alternative by which it doesn't impact the performance ?

Any help would be appreciated.

link|improve this question

76% accept rate
better go for cache – Madhu Feb 22 at 16:01
feedback

3 Answers

up vote 1 down vote accepted

Why do you need to store the whole dataset? If you have to, then do it in session. If your session is "inproc" the dataset object will be stored in memory (you save some performance because there will be no serialization).

If I was you, I would analyze the code and try not to store the whole dataset in neither session, not viewstate - there must be a way to optimize your code.

Hope it helps.

link|improve this answer
feedback

Storing a dataset in viewstate or session is ill-advised, but out of the two, storing it in session is definitely better than viewstate. Since then the serialization/de-serialization is handled at the server. Rather than sending the serialized data to the client as well.

link|improve this answer
feedback

as i think storing in session will may help you, but you need to think follwing points

  1. How many Users are Using Your application ?
  2. How much the dataset take size? if it is more , then dont store it in session.

I suggest you look on your requirement, if possible, you can store on cache, but it is application level. as Session Each User has its own session .

you can check the follwing links

  1. Session V/s Viewstate
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.