获取repeater中textbox的值
获取repeater中textbox的值与“System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.We...
获取repeater中textbox的值
与“System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.Web.UI.HtmlControls.HtmlTableRow)”最匹配的重载方法具有一些无效参数
前台代码:
<asp:Repeater ID="student" runat="server">
<ItemTemplate>
<tr>
<td height="30"> <%#Eval("Name") %></td>
<td><p align="center"> <asp:TextBox ID="yw" runat="server" Width="30"></asp:TextBox></td>
</tr>
</ItemTemplate>
</asp:Repeater>
后台代码:
for(int i=0;i<student.Items.Count;i++)
{
TextBox tb=(TextBox)student.Items[i].FindControl("yw");
aa=aa+tb.Text;
} 展开
与“System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.Web.UI.HtmlControls.HtmlTableRow)”最匹配的重载方法具有一些无效参数
前台代码:
<asp:Repeater ID="student" runat="server">
<ItemTemplate>
<tr>
<td height="30"> <%#Eval("Name") %></td>
<td><p align="center"> <asp:TextBox ID="yw" runat="server" Width="30"></asp:TextBox></td>
</tr>
</ItemTemplate>
</asp:Repeater>
后台代码:
for(int i=0;i<student.Items.Count;i++)
{
TextBox tb=(TextBox)student.Items[i].FindControl("yw");
aa=aa+tb.Text;
} 展开
展开全部
加,当然要加
后台应该加上判断
for(int i=0;i<student.Items.Count;i++)
{
TextBox tb=(TextBox)student.Items[i].FindControl("yw");
if(tb!=null){
aa=aa+tb.Text;
}
}
因为会出现多个TextBox,当你循环这个Repeater的时候,可能你会获取到其中有值的那个,但是也会被后面没值的TextBox覆盖,后面的TextBox中值是空的,所以,取不到值
后台应该加上判断
for(int i=0;i<student.Items.Count;i++)
{
TextBox tb=(TextBox)student.Items[i].FindControl("yw");
if(tb!=null){
aa=aa+tb.Text;
}
}
因为会出现多个TextBox,当你循环这个Repeater的时候,可能你会获取到其中有值的那个,但是也会被后面没值的TextBox覆盖,后面的TextBox中值是空的,所以,取不到值
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询