Is there an event that signifies the end of a page load?
Page Load Event
Collapse
This topic is closed.
X
X
-
Mike WasmerTags: None
-
Ray at
Re: Page Load Event
What are you looking to do?
Ray at work
"Mike Wasmer" <mike_wasmer@ho tmail.com> wrote in message
news:1a71e391.0 405060815.12fc0 d0a@posting.goo gle.com...[color=blue]
> Is there an event that signifies the end of a page load?[/color]
-
Dominique
Re: Page Load Event
don sound like asp to me
"Mike Wasmer" <mike_wasmer@ho tmail.com> wrote in message
news:1a71e391.0 405060815.12fc0 d0a@posting.goo gle.com...[color=blue]
> Is there an event that signifies the end of a page load?[/color]
Comment
-
[MSFT]
RE: Page Load Event
Hi Mike,
Based on my understand, you want to execute some client script when an asp
page is load compeletely? Is this right?
Regarding the issue, there are only events for Load and Unload, none for
loadcompleted. I suggest tou may add a script at the bottom of the page. It
will be executed after all components are load.
Hope this help,
Luke
Microsoft Online Support
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Comment
-
Mike Wasmer
Re: Page Load Event
lukezhan@online .microsoft.com ([MSFT]) wrote in message news:<oadmfg9ME HA.3808@cpmsftn gxa10.phx.gbl>. ..[color=blue]
> Hi Mike,
>
> Based on my understand, you want to execute some client script when an asp
> page is load compeletely? Is this right?
>
> Regarding the issue, there are only events for Load and Unload, none for
> loadcompleted. I suggest tou may add a script at the bottom of the page. It
> will be executed after all components are load.
>
> Hope this help,
>
> Luke
> Microsoft Online Support
>
> Get Secure! www.microsoft.com/security
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)[/color]
Hello,
Thank you for your response. I am needing to run a process after the
page loads that will generate an array from a potentially large group
of data. The problem that I am having is that because of the fact that
pages load linearly when I run the process even if it is in another
frame the page waits for it to finish to completely load. I thought
about using a response.flush to write the content and then run the
script but that doesn't look very viable to me due to the fact that
the user will need to interact with the page while the script is being
run which could cause problems. Thanks again for any help.
Mike
Comment
-
[MSFT]
Re: Page Load Event
Hi Mike,
I am still not very clear about the problem. Did you want to run some
client code or server side code in the "form load completed" event? Are the
data required by the array all in the same page?
Luke
Microsoft Online Support
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Comment
Comment