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
your page class gets recreated on each request... so myCounter won't exist the next time.
you can either
depends on what you're trying to do