ViewState

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

The documentation states that the viewstate is an
appropriate object to use if the amount of data is small
and it is user "specific" data because the data is sent
back and forth on each round trip.

My question is if I store a reference to a DataTable into
a Viewstate Variable, is it the reference to this table
that is being sent back and forth or is it the entire
table that it references?

Thanks in advance for your assistance!!!
 
You can't store references (pointers) to objects in Viewstate, only the
objects themselves.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 
Which is to say that I am actually sending back and forth
all of the data that is associated with the dataset...
Right?
 
Back
Top