Live Chat Icon For mobile
Live Chat Icon

How to call the Page_load procedure from any event on the page

Platform: ASP.NET| Category: Miscellaneous

VB.NET


Dim strval As String = 'a'
If strval = 'a' Then
	Call Page_Load(sender, e)
End If

C#


string strval ='a';
if( strval =='a')
{
	Page_Load(sender,e);
}

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.