asp.net Repeater asp.net Repeater取得CheckBox选中的某行某个值
人气:2想了解asp.net Repeater取得CheckBox选中的某行某个值的相关内容吗,在本文为您仔细讲解asp.net Repeater的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:asp.net,Repeater,CheckBox,下面大家一起来学习吧。
1、 foreach (Control c in this.rptTables.Controls)
{
CheckBox cbx = (CheckBox)c.FindControl("cbxId");
TextBox tbx = (TextBox)c.FindControl("tbxTableName");
if (cbx != null)
{
if (cbx.Checked == true)
{
common.salert(tbx.Text);
}
}
}
2、
for (int i = 0; i < this.rptTables.Items.Count; i++)
{
CheckBox cbx = (CheckBox)rptTables.Items[i].FindControl("cbxId");
TextBox tbx = (TextBox)rptTables.Items[i].FindControl("tbxTableName");
if (cbx != null)
{
if (cbx != null)
{
if (cbx.Checked)
{
common.salert(tbx.Text);
}
}
}
}
关键点:在每行再写个隐藏的控件我是用TextBox,代码如下:
<asp:TextBox id="tbxTableName" runat="server" Text='<%#Eval("TABLE_NAME") %>' style="display:none;" />
加载全部内容