ARTICLE

Select and deselect all checkbox in gridview using javascript in ASP.NET

Posted by Satyapriya Nayak Articles | ASP.NET using VB.NET August 13, 2011
In this article we will know how to select deselect all checkbox in gridview using javascript.
Reader Level:

Here you will learn how to select and  deselect all checkbox in gridview using javascript.

Program

Default.aspx code

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_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>
    <script type="text/javascript" language="javascript">
function Selectall_Deselectall(CheckBoxControl)
{
    if (CheckBoxControl.checked == true)
    {
        var i;
        for (i=0; i < document.forms[0].elements.length; i++)
        {
            if ((document.forms[0].elements[i].type == 'checkbox') &&
                (document.forms[0].elements[i].name.indexOf('checkpoint') > -1))
            {
                document.forms[0].elements[i].checked = true;
            }
        }
    }
    else
    {
        var i;
        for (i=0; i < document.forms[0].elements.length; i++)
        {
            if ((document.forms[0].elements[i].type == 'checkbox') &&
                (document.forms[0].elements[i].name.indexOf('checkpoint') > -1))
            {
                document.forms[0].elements[i].checked = false;
            }
        }
    }
}
</script>
</
head>
<
body>
    <form id="form1" runat="server">
    <div>
    <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="true">
    <Columns>            
    <asp:TemplateField>
    <HeaderTemplate>
    <input type="checkbox" name="SelectAllCheckBox" onclick="Selectall_Deselectall(this)">
    </HeaderTemplate>
    <ItemTemplate>
    <asp:CheckBox id="checkpoint" runat="server" ></asp:CheckBox>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
 </asp:GridView>
 
    </div>
    </form>
</body>
</
html>

Default.aspx.vb code
 
Imports
System.Data.SqlClient
Imports System.Data
Partial Class _Default
    Inherits System.Web.UI.Page
    Dim strConnString As String = System.Configuration.ConfigurationManager.ConnectionStrings.Item("ConnectionString").ToString()
    Dim con As New SqlConnection(strConnString)
    Dim str As String
    Dim com As SqlCommand
    Dim sqlda As SqlDataAdapter
    Dim ds As DataSet
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        con.Open()
        str = "select * from student"
        com = New SqlCommand(Str, con)
        Dim reader As SqlDataReader
        reader = com.ExecuteReader()
        GridView1.DataSource = reader
        GridView1.DataBind()
        con.Close()
    End Sub
End Class

Output

java script in ASP.NET

Thanks for reading.

Login to add your contents and source code to this article
share this article :
post comment
 
Team Foundation Server Hosting
Become a Sponsor
PREMIUM SPONSORS
  • Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
    Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites - Click Here!
Team Foundation Server Hosting
Become a Sponsor