event handlers that loads before page_load
-
Hi, I am debugging a difficult application, that I didnt code, I have a problem - there is a bug somewhere in the application, that occurs before the page loads for the user. What are the event handlers that can be used before page_Load, eg pre pageload event handler?
-
Hi, I am debugging a difficult application, that I didnt code, I have a problem - there is a bug somewhere in the application, that occurs before the page loads for the user. What are the event handlers that can be used before page_Load, eg pre pageload event handler?
I don`t know this will work or not because i assume that the page is first rendered and then loaded.Try this 1.From the dropdown in properties window select WebForm1 System.Web.UI.Page. 2.Go to Events and double click on PreRender. Now u can do the work to be done inside this event.
-
Hi, I am debugging a difficult application, that I didnt code, I have a problem - there is a bug somewhere in the application, that occurs before the page loads for the user. What are the event handlers that can be used before page_Load, eg pre pageload event handler?
Why you need event handlers ? i think are you confirm that all environment is set properly and check the base class if it is calling from your start up page
Thanks and Regards Sandeep
-
Why you need event handlers ? i think are you confirm that all environment is set properly and check the base class if it is calling from your start up page
Thanks and Regards Sandeep
you can do with it using preload... but i think u should first look at ur web.cofig.. global.asax some time they create problem... and it will vbe very helpfull for u if u put that error on the forum...
Ravi Kant Srivastava (System Analyst) HandsOn Technology & Engineering Gurgaon (India) e-mail:ravikant@hte.co.in
-
I don`t know this will work or not because i assume that the page is first rendered and then loaded.Try this 1.From the dropdown in properties window select WebForm1 System.Web.UI.Page. 2.Go to Events and double click on PreRender. Now u can do the work to be done inside this event.
I think PreRender comes before UnLoad. Init comes before Load.