Page Event
Hi,
I have a question regarding the Page_Load event. Why do we have to add Sender and E as arguments to the Page_Load sub like
Sub Page_Load(Sender As Object, E As EventArgs)
I have tried to change the sub to the following
Sub Page_Load()
and the code worked fine for the examples in ch07 & ch08. Then what do we need those arguments for ??
Thank you,
|