Hi, Chris:
It seems to me that SocketPro is able to solve your particular problem. See
the site
http://www.udaparts.com/document/art...ercallback.htm
function onMyUnload() //close socket connection
{
if(clientsocket){
handler.tell('I am leaving this page now ......');
clientsocket.WaitAll();
if(handler)
clientsocket.Detach(handler);
clientsocket.Disconnect();
}
clientsocket = null;
handler = null;
}
Cheers!
"Chris Roden" <> wrote in message
news:3AB6A159-9061-4585-AD54-...
>I am working on an ASP.NET application utilizing .NET 3.5. One page is
>using
> a multi-view with 10 views. UpdatePanels are used to navigate from one
> view
> to another. There are hundreds of fields and I want to be able to prompt
> the
> user to save if they are leaving the PAGE, not the view. The user should
> be
> able to move freely from view to view, but should be prompted to save if
> they
> try to leave the page. I am at a loss and can't figure this out. Any
> assistance is greatly appreciated!
>