关于GridView,DataList,Repeater控件的嵌套使用
关于GridView,DataList,Repeater控件的嵌套使用。
首先,对外层进行数据的绑定,这个很简单就不多说了。
其次,就是对内层的数据控件进行绑定了,应该在外层控件的ItemDataBind事件中对其进行数据的绑定。
具体操作如下:
protected void data_bind(object sender,DataListEventArgs e)//如果外层是datalist,内层是Repeater
{
Repeater rp=(Repeater)e.Item.FindControls("Repeater1");
rp.DataSource=ds;
rp.DataBind();
}
即实现了嵌套的绑定。
首先,对外层进行数据的绑定,这个很简单就不多说了。
其次,就是对内层的数据控件进行绑定了,应该在外层控件的ItemDataBind事件中对其进行数据的绑定。
具体操作如下:
protected void data_bind(object sender,DataListEventArgs e)//如果外层是datalist,内层是Repeater
{
Repeater rp=(Repeater)e.Item.FindControls("Repeater1");
rp.DataSource=ds;
rp.DataBind();
}
即实现了嵌套的绑定。