Ask a Question related to ASP.NET General, Design and Development.
-
Ron Vecchi #1
UnLoad Event
Does a page either dump all control rendering html to the response buffer
prior to the UnLoad event?
Basically I want everything sent to the browser before I execute some
possibly long sql queries.
I am thinking I could execute the queries in the Page_UnLoad event if
everything that will be sent to the browser has been either dumped into a
buffer in which I could flush it , or already sent to the browser.
I know I could open a new thread and execute the query but why do that when
the page is already rendered.
Any Ideas
Thanks,
Ron Vecchi
Ron Vecchi Guest
-
Event for web page unload
I have a flex application that needs to do a little clean up (acutally do a server post) when the user leaves the webpage. In java I could do it... -
Getting Error: Event Type 'flash.event:event' is unavailable ?????
Hi, I am not using Cairngorm or anything, but trying to get an app built first without it then look into it. I am getting this error however... -
Unload Usercontrol
I Had realized a user contro ctrlContro and i load it in this way: ctrlControl c1=new ctrlControl c1.Partent=this; c1.Show(); this is right,... -
CF code in unload event
I have some CF code that I want to execute when a user leaves a page. I put it in a javascript OnUnload routine. However the code seems to be... -
ACTIVE X UNLOAD
HI, I have an active x control that seems to stay memory resident throught my multiple dir's. Once I access the control and the app get's... -
Steve C. Orr, MCSD #2
Re: UnLoad Event
Yes, the HTML has already been completely rendered by the time the
Page_Unload event fires.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Ron Vecchi" <vencenzo@comcast.net> wrote in message
news:uKSD6DwVDHA.1912@TK2MSFTNGP11.phx.gbl...when> Does a page either dump all control rendering html to the response buffer
> prior to the UnLoad event?
>
> Basically I want everything sent to the browser before I execute some
> possibly long sql queries.
> I am thinking I could execute the queries in the Page_UnLoad event if
> everything that will be sent to the browser has been either dumped into a
> buffer in which I could flush it , or already sent to the browser.
>
> I know I could open a new thread and execute the query but why do that> the page is already rendered.
>
> Any Ideas
>
>
> Thanks,
>
> Ron Vecchi
>
>
Steve C. Orr, MCSD Guest



Reply With Quote

