Sub Page_Load(sender As Object, e As EventArgs)
Dim strDate As DateTime
strDate = "10/11/2008 08:25:30"
Me.lblText1.Text = Now()
Me.lblText2.Text = Now.AddSeconds(2)
Me.lblText3.Text = Now.AddSeconds(-1)
Me.lblText4.Text = strDate.AddSeconds(1)
End Sub