当前位置:编程学习 > asp >>

asp.net repeat嵌套


Bind to the Parent Table
1. Start Microsoft Visual Studio .NET.
2. On the File menu, point to New, and then click Project.
3. Click Visual C# Projects under Project Types, and then click ASP.NET Web Application underTemplates.
4. In the Location box, delete the WebApplication#, and then type NestedRepeater. If you use the local server, leave the server name as http://localhost. The following path appears in the Location box:
http://localhost/ NestedRepeater
Click OK.
5. In Solution Explorer, right-click the NestedRepeater project name node, point to Add, and then clickAdd Web Form.
6. To name the Web Form, type NestedRepeater, and click Open.
7. The new Web Form is created. It opens in Design View in the Integrated Development Environment (IDE) of Microsoft Visual Studio .NET. From the Toolbox, select the Repeater control, and then drag it to the Web Form page.
8. Change the ID property of this Repeater control to parentRepeater.
9. 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 Repeater control generates the following HTML code:
10. <asp:Repeater id="parentRepeater" runat="server"></asp:Repeater>
     
11. Add the following code in the Repeater tags:
12. <itemtemplate>
13.      <b><%# DataBinder.Eval(Container.DataItem, "au_id") %></b><br>
14. </itemtemplate>
     
After you do that, 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>
     
15. In Solution Explorer, right-click NestedRepeater.aspx, and then click View Code to switch to the NestedRepeater.aspx.cs code-behind file.
16. Add the following namespace declaration to the top of the file:
17. using System.Data;
18. using System.Data.SqlClient;
     
19. Add the following code to the Page_Load event to create a connection to the Pubs database, and then to bind the Authors table to the Repeater control:
20.       public void Page_Load(object sender, EventArgs e)
21.       {
22.          //Create the connection and DataAdapter for the Authors table.
23.          SqlConnection cnn = new SqlConnection("server=(local);database=pubs; Integrated Security=SSPI");
24.          SqlDataAdapter cmd1 = new SqlDataAdapter("select * from authors",cnn);
25. 
26.          //Create and fill the DataSet.
27.          DataSet ds = new DataSet();
28.          cmd1.Fill(ds,"authors");
29.          //Insert code in step 4 of the next section here.
30.          //Bind the Authors table to the parent Repeater control, and call DataBind.
31.          parentRepeater.DataSource = ds.Tables["authors"];
32.          Page.DataBind();
33. 
34.          //Close the connection.
35.          cnn.Close();
36.        }
     
NOTE: You may have to modify the database connection string as appropriate for your environment.
37. Save all of the files.
38. In Solution Explorer, right-click the NestedRepeater.aspx, and then click Set As Start Page.
39. On the Build menu click Build Solution to compile the project.
40. View the .aspx page in the browser, and then verify that the page works thus far.

The output should appear as follows:
• 172-32-1176
• 213-46-8915
• 238-95-7766
• 267-41-2394
• ...


Bind to the Child Table
1. In the HTML view of the NestedRepeater.aspx page, locate the following line of code:
2. <b><%# DataBinder.Eval(Container.DataItem, "au_id") %></b><br>
      
Add the following code after this code:
<asp:repeater id="childRepeater" runat="server">
  <itemtemplate>
             <%# DataBinder.Eval(Container.DataItem, "[\"title_id\"]")%><br>
  </itemtemplate>
</asp:repeater>
      
This new code adds a second Repeater control to the ItemTemplate property of the parent Repeatercontrol.
3. Set the DataSource property for the child Repeater control as follows:
4. <asp:repeater ... datasource='<%# ((DataRowView)Container.DataItem)
5.       .Row.GetChildRows("myrelation") %>' >
     
After you set the DataSource property for the child Repeater control, the HTML code for the twoRepeater 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='<%# ((DataRowView)Container.DataItem)
      .Row.GetChildRows("myrelation") %>' >
   <itemtemplate>
    <%# DataBinder.Eval(Container.DataItem, "[\"title_id\"]")%><br> 
   </itemtemplate>
  </asp:Repeater>
 </itemtemplate>
</asp:Repeater>
     
6. Add the following page directive to the top of the page:
7. <%@ Import Namespace="System.Data" %>
     
8. In the code-behind page, replace the following line in the Page_Load event
9. //Insert code in step 4 of the next section here.
      
with the following code:
         //Create a second DataAdapter for the Titles table.
         SqlDataAdapter cmd2 = new SqlDataAdapter("select * from titleauthor",cnn);
         cmd2.Fill(ds,"titles");

    

补充:Web开发 , ASP.Net ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,