I am using the following code,


vb Code:
  1. Partial Class _Default
  2.     Inherits System.Web.UI.Page
  3.     Public count As Integer = 0
  4.  
  5.     Protected Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
  6.         count += 1
  7.  
  8.         Label1.Text = "You clicked the button " & count.ToString & " times!"
  9.     End Sub
  10. End Class

however, all the page ever displays is "You clicked the button 1 times"