如何获取repeater内部控件的值 50
<li>我有产品密码:<asp:TextBoxID="TextBox1"runat="server"></asp:TextBox><asp:LinkButtonID="L...
<li>我有产品密码:<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="check" CommandArgument='<%# Eval("productspass") %>' Text="提交"></asp:LinkButton>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("body") %>' Visible="false"></asp:Label>
需要在点击button的时候获取textbox1的文本值,做数据比对,然后控制lable1显示与否
protected void Repeater1_ItemCommand(object sender, RepeaterCommandEventArgs e)
{
if (e.CommandName == "check")
{
RepeaterItem ri = e.Item;
TextBox txt = ri.FindControl("TextBox1") as TextBox;
Comm.Common.Alert(txt.Text);
}
}
获取出来的值是空 展开
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="check" CommandArgument='<%# Eval("productspass") %>' Text="提交"></asp:LinkButton>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("body") %>' Visible="false"></asp:Label>
需要在点击button的时候获取textbox1的文本值,做数据比对,然后控制lable1显示与否
protected void Repeater1_ItemCommand(object sender, RepeaterCommandEventArgs e)
{
if (e.CommandName == "check")
{
RepeaterItem ri = e.Item;
TextBox txt = ri.FindControl("TextBox1") as TextBox;
Comm.Common.Alert(txt.Text);
}
}
获取出来的值是空 展开
展开全部
for (int i = 0; i < this.Repeater1.Items.Count; i++)
{
TextBox txt = (TextBox)this.Repeater1.Items[i].FindControl("TextBox1");
string text = txt.Text;
}
{
TextBox txt = (TextBox)this.Repeater1.Items[i].FindControl("TextBox1");
string text = txt.Text;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
TableDI
2024-07-18 广告
2024-07-18 广告
VLOOKUP是Excel中用于垂直查找的函数,其基本用法包括四个参数:1. 查找值:即在数据表首列中需要搜索的值。2. 数据表:包含查找值的单元格区域或数组。3. 返回值所在列数:指定返回查询区域中第几列的值。4. 查找方式:选择精确匹配...
点击进入详情页
本回答由TableDI提供
展开全部
值=TextBox1.Text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
TextBox1.Text 获取不到文本吗?
追问
普通的可以,在repeater里面不可以
追答
看了你的代码,应该没问题啊
你是不是在onload里面绑定数据了?
绑定数据那块加上
if(!isPostBack){
//绑定数据
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询