Re: Page Load Event by mike_wasmer
mike_wasmer
Mon May 10 08:50:50 CDT 2004
lukezhan@online.microsoft.com ([MSFT]) wrote in message news:<oadmfg9MEHA.3808@cpmsftngxa10.phx.gbl>...
> 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.)
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