Any cool solution to save ENTIRE screen content and state?

F

FlashMerlot

We have an ASPX (C#) webform which hosts dropdownlists, textboxes, grids,
checkboxes, etc.
The users want to:

#1 - "FREEZE" the entire webpage contents (and state)
#2 - move IE browser to another URL (possibly several URLs ... maybe
even terminate the session and restart another session an hour+ later)
#3 - but eventually to return to the original FROZEN page
#4 - and .... shazam .... everything is exactly like they left it

I know I could write code to save the contents and state of each control
into the database ONE CONTROL AT A TIME. Then reconstitute the form later ONE
CONTROL AT A TIME. But that would be SOOOOOO much work.

Does anyone know a COOL way to capture

#1 - an entire webpage and state in a serializable form
#2 - save the capture to a database file
#3 - reconstitute the entire saved page later

Thanks - Volking

P.S. this entire operation happens in an HTTPS environment where users are
authenticated against Active Directory. So security is ok.
 
E

Evertjan.

=?Utf-8?B?Rmxhc2hNZXJsb3Q=?= wrote on 23 aug 2005 in
microsoft.public.inetserver.asp.general:
We have an ASPX (C#) webform which hosts dropdownlists, textboxes,
grids, checkboxes, etc.

This is a classic ASP NG.

For ASP.NET please ask in a dot.net NG

Does anyone know a COOL way to capture

Perhaps it is the big pond interfering,
but what the heck is "a COOL way"?
Something to do with processor temperature?

;-))
 
C

Cowboy (Gregory A. Beamer) - MVP

This is not an ASP.NET question, but yes it can be done.

My first try, if you use it, is to grab the entire viewstate as name value
pairs and persist it as a chunk. You can then match controls to saved state
and shazam. If you are not using ViewState, you can still iterate through the
controls, but realize that with either, a person changing state and closing
the browser without saving will end up with a page in flux.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top