stop page loading

  • Thread starter Thread starter Gav
  • Start date Start date
G

Gav

is it possible to put something in the pageload event to stop the page
rendering the rest of the page. or to tell the browser to execute the html
that it already has instead of wating until the page has finished loading?
 
are you talking of the Page.Load event?

If so you can always call Response.End to finish the current execution,
take a look at HttpResponse.End method in the doc.

Cheers,
 
Thats exactly what I was looking for thankyou. I didn't think to look in the
Repsonse methods.

Cheers
Gav
 
Back
Top