asp.net Repeater取得CheckBox选中的某行某个值

发布时间:2020-01-29编辑:脚本学堂
asp.net Repeater取得CheckBox选中的某行某个值

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;" />