Hello
I can't always seem to get the current date to display unless I give it its own Page_Load as follows:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
LblDate.Text = ReturnDate()
End Sub
But how would I overcome the problem of having two Page_Loads in the one aspx.vb file?
Trying to 'sneak'
LblDate.Text = ReturnDate()
into another Page_Load doesn't always work for me.
Thank you.
Go to the complete details ...