asp.net repeat嵌套(5)
来源:未知 责任编辑:责任编辑 发表时间:2015-09-16 20:04 点击:次
//Create the relation bewtween the Authors and Titles tables.
ds.Relations.Add("myrelation",
ds.Tables["authors"].Columns["au_id"],
ds.Tables["titles"].Columns["au_id"]);
//Bind the Authors table to the parent Repeater control, and call DataBind.
parentRepeater.DataSource = ds.Tables["authors"];
Page.DataBind();
//Close the connection.
cnn.Close();
}
private void Page_Init(object sender, EventArgs e)
{
InitializeComponent();
}
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
}
}
作者 郑文亮
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>