I am new to asp.net. I am creating a ASP.net website using VB.net. So here\'s my problem
Dim myCounter as Integer = 0
Protected Sub Button1_Click(ByVal sender A
Her's another method that doesn't use hidden field, viewstate, session or cache
Probably not something very 'safe' but probably saves you some time.
Assuming initial Label1.Text = 0
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles Button1.Click
Label1.Text = (Integer.Parse(Label1.Text) + 1).ToString()
end Sub