怎么在后台给 Repeater 中的控件赋值,我绑定的数据源是一个table 10
4个回答
展开全部
绑定table?
我认为应该是这个样子的吧!
后台:this.Repeater1.dataSoure=你得到的集合或是数组
this.Repeater1.dataBind();
前台:<table>
<tr>
<td><%#Eval("你想绑定的数据,例如ID,或是名字之类的")%></td>
</tr>
</table>
我认为应该是这个样子的吧!
后台:this.Repeater1.dataSoure=你得到的集合或是数组
this.Repeater1.dataBind();
前台:<table>
<tr>
<td><%#Eval("你想绑定的数据,例如ID,或是名字之类的")%></td>
</tr>
</table>
追问
后台,后台
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<asp:Repeater runat="server" ID="repAll" onitemcommand="reAll_ItemCommand"
onitemdatabound="reAll_ItemDataBound">
<ItemTemplate>
<asp:TextBox id="TextBox1" text="" ></asp:TextBox>
</ItemTemplate>
</asp:Repeater>
.cs
((TextBox)(repAll.Rows[i].FindControl("TextBox1"))).Text="123";
手打的
onitemdatabound="reAll_ItemDataBound">
<ItemTemplate>
<asp:TextBox id="TextBox1" text="" ></asp:TextBox>
</ItemTemplate>
</asp:Repeater>
.cs
((TextBox)(repAll.Rows[i].FindControl("TextBox1"))).Text="123";
手打的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Repeater 要自定一个html标签来循环的 主要的部分是手写的...
比如商品信息 图书信息 影片信息的展示之类
比如商品信息 图书信息 影片信息的展示之类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我晕。
this.Repeater1.dataSoure=this.table;
this.Repeater1.dataBind();
this.Repeater1.dataSoure=this.table;
this.Repeater1.dataBind();
追问
老大我说的是repeater中的控件
追答
'>
')">
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询