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
You can use view count :---
Code on event of button_click..
ViewState["count"] = Convert.ToInt32(ViewState["count"])+1; Label2.Text = "This button has been clicked " + ViewState["count"].ToString() + " times";