vote up 3 vote down star
2

Hi all,

Can a datareader be stored in a viewstate?

What data can be stored in viewstate?

flag

67% accept rate
3  
Why would you want to send a DataReader to the browser, that's just dumb and a waste as the browser can't do anything with it if it were possible. – mP Oct 27 at 7:33

3 Answers

vote up 2 vote down check

Any data [serializable] that you need to access during postbacks can be stored in a ViewState.

A DataReader cannot be serialised because is is based on Connected model. So it can't be stored in ViewState.

Also storing huge datatables in ViewState is not advisable. Return only necessary data that you need to show in the current context.

link|flag
vote up 1 vote down

I guess DataReader can't be stored. Just like xpathiterator can't.

The thing is - class must be serializable to store it in viewstate.


Quick googling gave me this:

A DataReader is not serializable as XML. If you want to store a result set in ViewState, use a DataTable or DataSet.

link|flag
vote up 0 vote down

you can store in view state anything that is SERIALIZABLE

so no, you can't

link|flag

Your Answer

Get an OpenID
or

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