Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Onload event

Status
Not open for further replies.

kamfl610

Programmer
Apr 15, 2003
90
US
Hi all,

Just a question,
When paging through a recordset, does the onload event fire each time you page through or is that fired once at the beginning and cannot be changed? Answer would be helpful! thanks
 
onLoad is an event function in the browser's Document Object Model.

The timeline looks something like this;
* Browser sends HTTP Request to server.
* Server receives the Request and executes your ASP to prepare an HTTP Response.
* Server sends the Response to the browser.
* Browser pumps the Response into its Document Object Model, runs any inlinescript, runs any DOM events, and renders the page.


So chances are your ASP execution on the server has been over for a long while before the onLoad fires in the browser.. at least a long while in computing terms.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top