Link to home
Start Free TrialLog in
Avatar of jaws1021
jaws1021

asked on

simple question

I have a very simple question how to get Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init ? I know how to get page load , but I don't know this..
Avatar of divinewind80
divinewind80

I am not understanding the question.  You should be able to add the lines below to your code-behind.  This will handle the Init event of the page

Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init

End Sub
Avatar of jaws1021

ASKER

do you mean just type it? You know how if you double click anywhere in the design you get page load automatically on code, I was thinking anything like that on page init?
ASKER CERTIFIED SOLUTION
Avatar of divinewind80
divinewind80

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial