R
rn5a
Often I come across the following Page_Load sub declaration in ASPX
pages:
Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs) Handles
MyBase.Load
........
........
End Sub
What does MyBase.Load do here? What for it is used? Is there any
difference between the above Page_Load sub declaration &
Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs)
pages:
Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs) Handles
MyBase.Load
........
........
End Sub
What does MyBase.Load do here? What for it is used? Is there any
difference between the above Page_Load sub declaration &
Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs)