Count values on Button Click

In this blog we will know the Count values on Button Click in Asp.Net.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Count_Button_Click_in_Asp.Net._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
   
<title>Untitled Page</title>
</head>
<body>
   
<form id="form1" runat="server">
   
<div>
   
<asp:Button ID="btn_count" runat="server"  Text="Count" onclick="btn_count_Click" /><br />
   
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
   
</div>
   
   
</form>
</body>
</html>

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

namespace Count_Button_Click_in_Asp.Net
{
   
public partial class _Default : System.Web.UI.Page
   
{

       
protected void btn_count_Click(object sender, EventArgs e)
       
{
           
ViewState["count"] = Convert.ToInt32(ViewState["count"]) + 1;
           
Label1.Text = ViewState["count"].ToString();
       
}
   
}
}