how to fire buttonclick event on page load
-
Hi, I want the button clickevent should fire on the page load event is it possible if yes tell me how to do this. thanks in advance Thanks Warm Regards Prakash-B
-
Hi, I want the button clickevent should fire on the page load event is it possible if yes tell me how to do this. thanks in advance Thanks Warm Regards Prakash-B
-
simply call the button click event in the form load like this
Public Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Button1_Click(sender,e) end Sub
abhinavHi, I have another doubt, i am having aspx page and having webusercontrol ascx. I want to call page_load event of webusercontrol from aspx page is it possible. thanks in advance Thanks Warm Regards Prakash-B
-
Hi, I have another doubt, i am having aspx page and having webusercontrol ascx. I want to call page_load event of webusercontrol from aspx page is it possible. thanks in advance Thanks Warm Regards Prakash-B
-
Hi, I have another doubt, i am having aspx page and having webusercontrol ascx. I want to call page_load event of webusercontrol from aspx page is it possible. thanks in advance Thanks Warm Regards Prakash-B
Hi there, Basically, the Page_Load of the web user control does not run until the Page_Load of the web page instance has finished. And it does not make much sense when you want to change the event order in the life cycle. Can you be more specific about what you might want to do?
-
Hi there, Basically, the Page_Load of the web user control does not run until the Page_Load of the web page instance has finished. And it does not make much sense when you want to change the event order in the life cycle. Can you be more specific about what you might want to do?
Hi, On button click event of the webpage i have to call the pageload event of webusercontrol. Thanks Warm Regards Prakash-B
-
Hi, On button click event of the webpage i have to call the pageload event of webusercontrol. Thanks Warm Regards Prakash-B
-
Why do you want to call the Page_Load event of the user control in the Click handler? Do you want to dynamically load the user control?
yes i want to call it dynamically Thanks Warm Regards Prakash-B
-
yes i want to call it dynamically Thanks Warm Regards Prakash-B
-
Hi, On button click event of the webpage i have to call the pageload event of webusercontrol. Thanks Warm Regards Prakash-B