If the user closes out the browser without something posting that data back
to the server, then you're out of luck.
However, if you keep track of what the user's doing, and place that data
somewhere in their session, or in a databade, then you could do something
when the user's session ends. (a result of them closing out the browser).
If you're working with IE only, then I guess you could create a client-side
javascript function that created an xmlhttp (ActiveX) object and posted the
form's information to the server as an XML document (where this function
executes on the page's onUnload Event). But that also means the function
would run every time the page posts back too. To get around this, you could
check the event's X,Y coordinates to see if it happened inside of the window
(is it happened at a negative Y coordinate, then the user clicked "x")
These are just sone random musings...Hope they help
Vinny Vinn said:
I apologize for not be clear as to what i am trying to do.
When the page is x out (not Redirected) i would like to save (to a
database) any data that the user entered.