HOW TO: Create a Master/Detail Page with Web Form Controls (308485)
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
This article was previously published under Q308485 For additional information about how to perform this task by using Microsoft Active Server Pages, click the article number below
to view the article in the Microsoft Knowledge Base:
194018 HOW TO: Create a Master/Detail Page (.asp) by Using Design-time Controls (DTCs)
IN THIS TASKSUMMARY
This article describes how to use Web Form controls to display a list of items or records that are associated with a particular item or record that is selected by a user.
If your DataSet object contains a series of related tables, you can use two DataGrid controls to display the data in a master/detail format. One DataSet is designated to be the master grid, and the second is designated to be the details grid. When a user selects an entry in the master list, all of the related child entries are shown in the details list.
For example, if your DataSet contains a customers table and a related orders table, you specify the customers table to be the master grid and the orders table to be the details grid. When a customer is selected in the master grid, all of the orders that are associated with the customer in the orders table are displayed in the details grid.
back to the top
Create a Sample Project- Start Microsoft Visual Studio .NET. The Visual Studio .NET IDE is displayed.
- 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 New Project dialog box, locate the Name and Location text boxes. Notice that the Name box is unavailable (appears dimmed). The Location text box contains the following text (or similar):
http://localhost/WebApplication1
Change "http://localhost/WebApplication1" to http://localhost/MasterDetailTest, and then click OK. A new project is created, which includes a Web Form that is named WebForm1.aspx.
back to the top
Add a Data Connection- On the View menu, click Server Explorer.
- Right-click Data Connections, and then click Add Connection.
- On the Provider tab, click Microsoft OLE DB Provider for SQL Server.
- On the Connection tab, type the name of the server that is running Microsoft SQL Server, the user name, and the password to access the server that is running SQL Server, and then select the NorthWind database.
- Click Test Connection to verify that the connection works, and then click OK.
back to the top
Prepare the Web Form- In Project Explorer, click the WebForm1.aspx page.
- Right-click the WebForm1.aspx page, and then click Properties.
- On the General tab, click FlowLayout under Page Layout, and then click OK.
- Verify that the WebForm1.aspx page is in Design view by clicking the Design tab on the Web Form.
- Drag a Button control from the toolbox to the page, and then type Load as the button text.
back to the top
Prepare the DataGrid Controls- Drag two DataGrid controls from the toolbox to the Web Form.
- Right-click the first DataGrid that you added to the Web form, which is named DataGrid1, and then click Property Builder.
- In the available columns section, click Columns, and then add a Button Column to the Selected Columns.
- Click the button column, type Show Details as the text, type select as the Command Name, and then verify that Link Button is selected for Button Type. Click OK.
- In the Paging section, click to select the Allow Paging check box, and then set the page size to 5. Click OK.
- Right-click the second DataGrid that you added to the Web Form, which is named Datagrid2, and then click Property Builder.
- In the Paging section, click to select the Allow Paging check box, and then set the page size to 5.
back to the top
Work with the Data- On the View menu, click Server Explorer.
- Drag the Orders table and the Customers table from Server Explorer to the form. Notice that one SqlConnection object and two SqlDataAdapter objects appear on the form.
- On the Data menu, click Generate DataSet. In the dialog box that appears, make sure that all of the tables that you must have for the grid are selected. Make sure that New is selected for the DataSet and that Add this DataSet to the designer is selected. In the New Selection text box, type CustomersOrders to name the DataSet. Notice that a DataSet control appears on the Web Form.
- In Project Explorer, double-click the CustomersOrders.xsd file.
- Right-click the key field in the Customers master table, point to Add, and then click New Relation.
- In the Edit Relation dialog box, under Name, type Relation.
- Under Parent element, click Customers. Under Child element, click Orders.
- Verify that Key Fields and Foreign Key Fields are set to CustomerID, and then click OK.
- Save the relationships by selecting Save All on the File menu.
back to the top
Final DataGrid Configurations- In Project Explorer, double-click the WebForm1.aspx page.
- Select the first DataGrid that you added to the page, named DataGrid1.
- In the Properties window, set the following values:
- In the DataSource property box, click CustomersOrders1.
- In the DataMember property box, click Customers.
- In the DataKeyField property box, click CustomerID.
back to the top
Code to Complete the Sample- Right-click WebForm1.aspx, and then click View Code.
- Add the following code to the WebForm1.aspx page:
Public Sub FillDataSet(ByVal dataset As MasterDetailTest.CustomersOrders)
dataset.EnforceConstraints = False
Me.SqlConnection1.Open()
Me.SqlDataAdapter1.Fill(dataset)
Me.SqlDataAdapter2.Fill(dataset)
dataset.EnforceConstraints = True
Me.SqlConnection1.Close()
End Sub
Private Sub Showdetailgrid()
If (Me.DataGrid1.SelectedIndex <> -1) Then
Dim parentrows As System.Data.DataView
Dim childrows As System.Data.DataView
Dim currentparentrow As System.Data.DataRowView
Me.CustomerOrders1 = CType(Application("CustomersOrders1"),
MasterDetailTest.CustomersOrders)
parentrows = New DataView()
parentrows.Table = Me.CustomersOrders1.Tables("Customers")
currentparentrow = parentrows(Me.DataGrid1.SelectedIndex)
childrows = currentparentrow.CreateChildView("relation")
Me.DataGrid2.DataSource = childrows
Me.DataGrid2.DataBind()
Me.DataGrid2.Visible = True
Else
Me.DataGrid2.Visible = False
End If
End Sub
Private Sub DataGrid1_SelectedIndexChanged(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
DataGrid1.SelectedIndexChanged
Me.Showdetailgrid()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Me.LoadDataSet()
Me.DataGrid1.SelectedIndex = -1
Me.DataGrid1.DataBind()
Me.DataGrid2.Visible = False
Application("CustomersOrders1") = Me.CustomersOrders1
End Sub
'Create a new DataSet to hold the records returned from the call to FillDataSet().
'A temporary dataset is used, because filling the existing DataSet would
'require the databindings to be rebound.
Public Sub LoadDataSet()
Dim objdatasettemp As MasterDetailTest.CustomersOrders
objdatasettemp = New MasterDetailTest.CustomersOrders()
Me.FillDataSet(objdatasettemp)
CustomersOrders1.Clear()
CustomersOrders1.Merge(objdatasettemp)
End Sub
back to the top
REFERENCES
For more information about the DataGrid control, visit the following Microsoft Web site:
For additional information about data binding, click the article number below
to view the article in the Microsoft Knowledge Base:
307860 INFO: ASP.NET Data Binding Overview
back to the top
Modification Type: | Minor | Last Reviewed: | 6/12/2003 |
---|
Keywords: | kbDataBinding kbHOWTOmaster kbServerControls kbWebForms KB308485 kbAudDeveloper |
---|
|