Click one of the Repeater modify events to trigger all repeater modification events for each row

Source: Internet
Author: User

<TD align= "center" >
<asp:linkbutton id = "BTNVIP" runat = "server" commandargument= ' <% #Eval ("id")%> ' commandname= ' edit ' Text = ' Modify ' & Gt;</asp:linkbutton>
</td>
&LT;TD align= "center" >
<asp:hiddenfield id= "HF" runat= "server" Value= ' <% #Eval ("ID")%> '/>
</td>
</tr>

protected void Repeater1_bind (object source, RepeaterCommandEventArgs e)
{

if (e.commandname.equals ("edit"))
{
for (int i = 0; i < rptlist. Items.Count; i++)
{
TextBox txtcom = (textbox) rptlist. Items[i]. FindControl ("Tbvip");
HiddenField HF = (HiddenField) rptlist. Items[i]. FindControl ("HF");
int id = Int. Parse (HF. Value);
if (txtcom. Text.tostring ()! = "" && txtcom. Text.tostring ()! = null)
{
DataTable DTVIP = DB. Getdatatable ("Businessid,busoname,businessname", "Business", "businessname=" + txtcom. Text.trim () + "'", "");
Db. Operate ("Update table set cmid= '" + DTVIP. Rows[0][0]. ToString () + "', cname= '" + DTVIP. ROWS[0][1]. ToString () + "' Where id= '" + ID + "'");
}

}
Display ();
}

}

Click one of the Repeater modify events to trigger all repeater modification events for each row

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.