有的網友在問怎樣顯示子表的前N條記錄,下面是我的做法:
C#
ASPx檔案:
<%@ Page language="c#" Codebehind="WebForm13.aspx.cs" AutoEventWireup="false" Inherits="test1.WebForm13" %>
<%@ Import Namespace="System.Data" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm13</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .net 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<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">
<!-- 父Repeater開始 -->
<asp:repeater id="parentRepeater" runat="server">
<itemtemplate>
<b>
<%# DataBinder.Eval(Container.DataItem,"au_id") %>
</b>
<br>
<!-- 子Repeater開始 -->
<asp:repeater id="childRepeater" runat="server" datasource='<%# getrow((DataRowView)Container.DataItem,1)%>'>
<itemtemplate>
<%# DataBinder.Eval(Container.DataItem, "[\"title_id\"]")%>
<br>
</itemtemplate>
</asp:repeater>
<!-- 子Repeater結束 -->
</itemtemplate>
</asp:repeater>
<!-- 父Repeater結束 -->
</form>
</body>
</HTML>
cs檔案:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace test1
{
/**//**//**//// <summary>
/// WebForm13 的摘要說明。
/// </summary>
public class WebForm13 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Repeater parentRepeater;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此處放置使用者程式碼以初始化頁面
string cnnString = @"server=(local);database=pubs;uid=sa;pwd=sa";
SqlConnection cnn = new SqlConnection(cnnString);
SqlDataAdapter cmd1 = new SqlDataAdapter("select * from authors",cnn);
//建立填充 DataSet.
DataSet ds = new DataSet();
cmd1.Fill(ds,"authors");
// 為Titles表建立 DataAdapter
SqlDataAdapter cmd2 = new SqlDataAdapter("select * from titleauthor",cnn);
cmd2.Fill(ds,"titles");
// 建立 Authors 表和 Titles 表之間的關係.
ds.Relations.Add("myrelation",
ds.Tables["authors"].Columns["au_id"],
ds.Tables["titles"].Columns["au_id"]);
// 繫結Authors到父Repeater
parentRepeater.DataSource = ds.Tables["authors"];
Page.DataBind();
cnn.Close();
cnn.Dispose();
}
Web 窗體設計器生成的程式碼Web 窗體設計器生成的程式碼#region Web 窗體設計器生成的程式碼
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 該呼叫是 ASP.NET Web 窗體設計器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/**//**//**//// <summary>
/// 設計器支援所需的方法 - 不要使用程式碼編輯器修改
/// 此方法的內容。
/// </summary>
private void InitializeComponent()
{
//this.parentRepeater.DataBinding += new System.EventHandler(this.parentRepeater_DataBinding);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
protected DataRow[] getrow(DataRowView drv,int num)
{
DataRow[] dr=drv.Row.GetChildRows("myrelation");
if(dr.Length>num)
{
DataRow[] drtemp=new DataRow[num];
for(int i=0;i<num;i++)
{
drtemp[i]=dr[i];
}
return drtemp;
}
else
return drv.Row.GetChildRows("myrelation");
}
}
}