Development ASP.Net Tutorial

<%@ Page %>

  Sub Page_Load(sender As Object, e As EventArgs)
    Dim ticks As Long
    ticks=DateTime.Now.Ticks-DateTime.Today.Ticks
    Dim ts As New TimeSpan(ticks)
    Hours.Text=ts.Hours.ToString()
    Minutes.Text=ts.Minutes.ToString()
    Seconds.Text=ts.Seconds.ToString()
  End Sub


  
    
      Since the start of the day
      
      hours,
      
      minutes and
      
      seconds have passed.