G
Guest
I developed a web application that doesn't allow the Back Arrow on the
browser to work (disabled cacheing, always call myself on any event, and code
in Load_Page that will redirect to the active page). Under this case I will
only have the possibility of one active viewstate. Therefore the massive
amount of data being transfered back and forth in the viewstate hidden
attribute just causes my performance to degredate badly without any possible
benefits. Since I can only have one possible viewstate (not multiple when the
back arrow is allowed) it would be nice to have the view state treated like
the session state (the easiest would be to place the view state in a Session
variable that could be retrieved by the Framework anytime a post is done).
Is there such a capability built into the Framework? I checked the @page
directive and did some searches but couldn't find any such capability.
browser to work (disabled cacheing, always call myself on any event, and code
in Load_Page that will redirect to the active page). Under this case I will
only have the possibility of one active viewstate. Therefore the massive
amount of data being transfered back and forth in the viewstate hidden
attribute just causes my performance to degredate badly without any possible
benefits. Since I can only have one possible viewstate (not multiple when the
back arrow is allowed) it would be nice to have the view state treated like
the session state (the easiest would be to place the view state in a Session
variable that could be retrieved by the Framework anytime a post is done).
Is there such a capability built into the Framework? I checked the @page
directive and did some searches but couldn't find any such capability.