Is there an after Page_Load event in ASP.net
Is there an event that is triggered after all Page_Load events have completed?
Is there an event that is triggered after all Page_Load events have completed?
I am trying to set the focus to the user name TextBox which is inside an ASP.NET Login control.
How can I check whether the page has finished loading? When it has, how can I execute a method already created in the C# code behind for that page?
I just want to inform the user that the page is busy when it is loading or the action is being carried in the background or when the postback occurs by just changing the mouse cursor to busy. The cursor should turn to normal pointer when the page is completely loaded in ASP.Net. Answers: Thank … Read more
In c#, how can I check to see if a link button has been clicked in the page load method?