html table cast

G

Guest

hey all,
i have an html table i need to put in session. is there something i can do
to make this lighter before putting into session or is this ok to do? (not
many rows in the table at one time around 10 rows 7 or 8 columns on avg)

thanks,
rodchar
 
G

Guest

i have an html table and the data table that is the data source. does it
matter which one i put in session? i'd like to use the data table if ok?
 
G

Guest

rodchar said:
hey all,
i have an html table i need to put in session. is there something i can do
to make this lighter before putting into session or is this ok to do? (not
many rows in the table at one time around 10 rows 7 or 8 columns on avg)

There is no purpose to store controls in a session variable. Controls
are components, and can only be used once. When the page where the
controls are used is disposed, the controls are disposed also. If you
try to reuse the control on another page, it won't work properly.

Been there, done that. ;) (Well, not with session variables, but with
static caching.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top