Insert a Datatable or Datagrid into ViewState?

  • Thread starter Thread starter Stephajn Craig
  • Start date Start date
S

Stephajn Craig

Is it possible to insert the contents of an entire datatable or datagrid
into ViewState so that is can be persisted between calls to and from the
server? It's on an intranet, so bandwidth isn't too much of a concern here.
 
Stephajn Craig said:
Is it possible to insert the contents of an entire datatable or datagrid
into ViewState so that is can be persisted between calls to and from the
server? It's on an intranet, so bandwidth isn't too much of a concern here.

Why not just put it in Session state?

If you have enough memory on your web server it would be much cheaper,
faster and easier.

David
 
Back
Top