HOW TO: Loop Through and Examine CheckBox Control Values in a DataGrid Column by Using ASP.NET and Visual Basic .NET (321881)
The information in this article applies to:
- Microsoft ASP.NET (included with the .NET Framework 1.1)
- Microsoft ASP.NET (included with the .NET Framework) 1.0
- Microsoft Visual Basic .NET (2003)
- Microsoft Visual Basic .NET (2002)
This article was previously published under Q321881
This article refers to the following Microsoft .NET Framework Class Library namespaces:
- System.Data.SqlClient
- System.Text
For a Microsoft Visual C# .NET version of this article, see 320707.
IN THIS TASKSUMMARY
This step-by-step article demonstrates how to loop through each row of an ASP.NET DataGrid control and how to determine if the ASP.NET CheckBox server control that is used to identify the row has been selected.
The sample code in this article uses the Microsoft SQL Server Northwind database to populate the DataGrid control and then adds a CheckBox server control to the initial column for each row. This is a common technique that allows users to select multiple, specific rows in a DataGrid.
back to the top
Requirements- Microsoft Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server, or Windows XP Professional
- Microsoft .NET Framework
- Microsoft Internet Information Services (IIS)
- Microsoft Visual Studio .NET
back to the top
Create an ASP.NET Web Application by Using Visual Basic .NET- Start Microsoft Visual Studio .NET.
- On the File menu, point to New, and then click Project.
- In the New Project dialog box, click Visual Basic Projects under Project Types, and then click ASP.NET Web Application under Templates.
- In the Location box, replace the WebApplication# default name with MyWebApp. If you are using the local server, you can leave the server name as http://localhost. The resulting Location box appears as follows:
http://localhost/MyWebApp
back to the top
Create the Sample Web Form Page- Add a new Web Form to the ASP.NET Web application as follows:
- Right-click the project node in Solution Explorer, point to Add, and then click Add Web Form.
- In the Name box, type MySample.aspx, and then click Open.
- In the Properties window, change the pageLayout property for the document to FlowLayout. Although you do not have to do this to use the sample code, this will make the presentation appear cleaner.
- Add a DataGrid, a Button, and a Label server control to the page as follows:
- Drag an ASP.NET DataGrid server control from the Web Forms toolbox onto the page.
- In the Properties window, change the ID of the DataGrid control to DemoGrid.
- Drag an ASP.NET Button server control from the Web Forms toolbox onto the page below the DataGrid.
- In the Properties window, change the ID of the Button control to GetSelections, and then change the Text property to Get Selections.
- Drag an ASP.NET Label server control from the Web Forms toolbox onto the page below the Button control.
- In the Properties window, change the ID of the Label control to ResultsInfo, and then delete any text in the Text property.
- Switch to HTML view in the editor. Add the code to the default DataGrid template to construct the columns. The resulting code for the control should appear as follows:
<asp:DataGrid id="DemoGrid" runat="server" DataKeyField="CustomerID">
<Columns>
<asp:TemplateColumn HeaderText="Customer">
<ItemTemplate>
<asp:CheckBox ID="myCheckbox" Runat="server" />
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid>
- Right-click the page, and then click View Code. This opens the code-behind class file in the editor. Add the following namespace references to the code-behind class file:
Imports System.Data.SqlClient
Imports System.Text
- Replace the existing code for the Page_Load event handler with the following code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
'Create a SqlConnection object.
'Modify the connection string as necessary for your environment.
Dim cn As SqlConnection = New SqlConnection("Server=localhost;database=Northwind;UID=sa;PWD=")
Dim cmd As SqlCommand = New SqlCommand("SELECT * FROM Customers", cn)
cn.Open()
Dim reader As SqlDataReader = cmd.ExecuteReader()
DemoGrid.DataSource = reader
DataBind()
reader.Close()
cn.Close()
End If
End Sub
- Switch to Design view, and then double-click GetSelections. This opens the code-behind class file in the editor. Replace the existing code in the GetSelections_Click event handler with the following code:
Private Sub GetSelections_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GetSelections.Click
Dim rowCount As Integer = 0
Dim gridSelections As StringBuilder = New StringBuilder()
'Loop through each DataGridItem, and determine which CheckBox controls
'have been selected.
Dim DemoGridItem As DataGridItem
For Each DemoGridItem In DemoGrid.Items
Dim myCheckbox As CheckBox = CType(DemoGridItem.Cells(0).Controls(1), CheckBox)
If myCheckbox.Checked = True Then
rowCount += 1
gridSelections.AppendFormat("The checkbox for {0} was selected<br>", _
DemoGrid.DataKeys(DemoGridItem.ItemIndex).ToString())
End If
Next
gridSelections.Append("<hr>")
gridSelections.AppendFormat("Total number selected is: {0}<br>", rowCount.ToString())
ResultsInfo.Text = gridSelections.ToString()
End Sub
back to the top
Verify That It Works- On the File menu, click Save All to save the Web Form and other files that are associated with the project.
- On the Build menu in the Visual Studio .NET integrated development environment (IDE), click Build Solution.
- In Solution Explorer, right-click the Web Form page (MySample.aspx), and then click View in Browser. Notice that the page displays the data in the grid. Additionally, a check box appears in the first column of each row. The user can click to select this check box to mark specific rows.
- Click to select a few of the check boxes for the rows, and then click Get Selections.
After the page makes a round trip to the server and executes the code in the GetSelections_Click event handler, a list of the items that you selected in the previous step appears. The code in the GetSelections_Click event handler loops through each DataGridItem in your ASP.NET DataGrid server control, determines whether the Checked property of the related CheckBox control is true, and then records the associated key value at that specific position for the DataKeys of the DataGrid.
back to the top
REFERENCES
For more information about the DataGrid control, click the article number below to view the article in the Microsoft Knowledge Base:
306227 HOW TO: Use a CheckBox Web Control in a DataGrid in Visual Studio .NET
For more information about the DataGrid control and for samples that use this control, visit the following MSDN Web sites:
back to the top
Modification Type: | Major | Last Reviewed: | 5/19/2003 |
---|
Keywords: | kbHOWTOmaster kbServerControls KB321881 kbAudDeveloper |
---|
|