HOW TO: Display Hierarchical Data by Using Nested Repeater Controls and Visual Basic .NET (326338)
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 Q326338 For a Microsoft Visual C# .NET version of this article, see 306154.
This article refers to the following Microsoft .NET Framework Class Library namespaces:
- System.Data
- System.Data.SqlClient
IN THIS TASKSUMMARY
This article describes how to use nested Repeater Web controls to display hierarchical data. You can apply this concept to other list-bound controls.
back to the top
Bind to the Parent Table- Start Microsoft Visual Studio .NET.
- On the File menu, point to New, and then click Project.
- Click Visual Basic Projects under Project Types, and then click ASP.NET Web Application under Templates.
- In the Location box, delete WebApplication#, and then type . If you use the local server, you can leave the server name as
http://localhost. The path appears as follows in the Location box:
http://localhost/ NestedRepeater
- In Solution Explorer, right-click the project-name node (NestedRepeater), click Add, and then click Add Web Form.
- In the Name box, type NestedRepeater, and click Open.
- The new Web Form is created. It opens in Design View in the IDE of Microsoft Visual Studio .NET. From the toolbox, select the Repeater control, and then drag it to the Web Form page.
- Change the ID property of this Repeater control to
parentRepeater.
- Switch to the HTML view for this Web Form. To do so, click the HTML tab in the lower-left corner of the Designer. The HTML that the Repeater control generates is as follows:
<asp:Repeater id="parentRepeater" runat="server"></asp:Repeater>
- Add the following code in the Repeater tags:
<itemtemplate>
<b><%# DataBinder.Eval(Container.DataItem, "au_id") %></b><br>
</itemtemplate>
After you add the code, the HTML code for the Repeater is as follows:
<asp:Repeater id="parentRepeater" runat="server">
<itemtemplate>
<b><%# DataBinder.Eval(Container.DataItem, "au_id") %></b><br>
</itemtemplate>
</asp:Repeater>
- In Solution Explorer, right-click the NestedRepeater.aspx, and then click View Code to switch to the code-behind page (NestedRepeater.aspx.vb).
- Add the following namespace declaration to the top of the file:
Imports System.Data
Imports System.Data.SqlClient
- Add the following code to the Page_Load event to create a connection to the Pubs database, and to bind the Authors table to the Repeater control:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cnn As SqlConnection = New SqlConnection("server=(local);database=pubs;Integrated Security=SSPI")
Dim cmd1 As SqlDataAdapter = New SqlDataAdapter("select * from authors", cnn)
Dim ds As DataSet = New DataSet()
cmd1.Fill(ds, "authors")
'Insert code in step 4 of the next section here.
parentRepeater.DataSource = ds.Tables("authors")
Page.DataBind()
cnn.Close()
End Sub
NOTE: You may have to modify the database connection string as appropriate for your environment.
- Save all of the files.
- On the Build menu, click Build Solution to compile the project.
- View the .aspx page in the browser, and then verify that the page works so far. The output should appear as follows:
172-32-1176 213-46-8915 238-95-7766 267-41-2394
...
back to the top
Bind to the Child Table- In the HTML view of the NestedRepeater.aspx page, locate the following code:
<b><%# DataBinder.Eval(Container.DataItem, "au_id") %></b><br>.<BR/>
After this line of code, add the following code to add a second Repeater control to the ItemTemplate of the parent Repeater control:
<asp:repeater id="childRepeater" runat="server">
<itemtemplate>
<%# Container.DataItem("title_id") %>
<br>
</itemtemplate>
</asp:repeater>
- Set the DataSource property for the child Repeater control as follows:
<asp:repeater ... datasource='<%# Container.DataItem.Row.GetChildRows("myrelation") %>'>
After you set the DataSource property for the child Repeater control, the HTML code for the two Repeater controls (parent and child) appears as follows:
<asp:Repeater id="parentRepeater" runat="server">
<itemtemplate>
<b>
<%# DataBinder.Eval(Container.DataItem, "au_id") %>
</b>
<br>
<asp:repeater id="childRepeater" runat="server"
datasource='<%#
Container.DataItem.Row.GetChildRows("myrelation")%>'>
<itemtemplate>
<%# Container.DataItem("title_id") %><br>
</itemtemplate>
</asp:Repeater>
</itemtemplate>
</asp:Repeater>
- Add the following page directive to the top of the page:
<%@ Import Namespace="System.Data" %>
- In the code-behind page, replace the following line in the Page_Load event
'Insert code in step 4 of the next section here.
with the following code, which adds the Titles table to the DataSet, and then adds the relationships between the Authors and Titles tables:
Dim cmd2 As SqlDataAdapter = New SqlDataAdapter("select * from titleauthor", cnn)
cmd2.Fill(ds, "titles")
ds.Relations.Add("myrelation", _
ds.Tables("authors").Columns("au_id"), _
ds.Tables("titles").Columns("au_id"))
parentRepeater.DataSource = ds.Tables("authors")
- Save all files, and then build the project.
- View the page in the browser, and then verify that the page works so far. The output should appear as follows:
172-32-1176
PS3333 213-46-8915
BU1032
BU2075 238-95-7766
PC1035 267-41-2394
BU1111
TC7777
...
back to the top
Complete Code ListNestedrepeater.aspx
<%@ Import Namespace="System.Data" %>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="NestedRepeater.aspx.vb" Inherits="yourprojectnamespace.NestedRepeater"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>NestedRepeater</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:Repeater id="parentRepeater" runat="server">
<itemtemplate>
<b>
<%# DataBinder.Eval(Container.DataItem, "au_id") %>
</b>
<br>
<asp:repeater id="childRepeater"
runat="server" datasource='<%# Container.DataItem.Row.GetChildRows("myrelation") %>'>
<itemtemplate>
<%# Container.DataItem("title_id") %><br>
</itemtemplate>
</asp:Repeater>
</itemtemplate>
</asp:Repeater>
</form>
</body>
</HTML>
Nestedrepeater.aspx.vb
Imports System.Data
Imports System.Data.SqlClient
Public Class NestedRepeater
Inherits System.Web.UI.Page
Protected WithEvents childRepeater As System.Web.UI.WebControls.Repeater
Protected WithEvents parentRepeater As System.Web.UI.WebControls.Repeater
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cnn As SqlConnection = New SqlConnection("server=(local);database=pubs;Integrated Security=SSPI")
Dim cmd1 As SqlDataAdapter = New SqlDataAdapter("select * from authors", cnn)
Dim ds As DataSet = New DataSet()
cmd1.Fill(ds, "authors")
Dim cmd2 As SqlDataAdapter = New SqlDataAdapter("select * from titleauthor", cnn)
cmd2.Fill(ds, "titles")
ds.Relations.Add("myrelation", _
ds.Tables("authors").Columns("au_id"), _
ds.Tables("titles").Columns("au_id"))
parentRepeater.DataSource = ds.Tables("authors")
parentRepeater.DataSource = ds.Tables("authors")
Page.DataBind()
cnn.Close()
End Sub
End Class
back to the top
REFERENCES
For more information, visit the following topics in the Microsoft .NET Framework Software Development Kit (SDK):
back to the top
Modification Type: | Major | Last Reviewed: | 7/30/2003 |
---|
Keywords: | kbDataBinding kbHOWTOmaster kbServerControls KB326338 kbAudDeveloper |
---|
|