Support

Account

Home Forums Add-ons Repeater Field Disable Repeater 'Add Row' Button Reply To: Disable Repeater 'Add Row' Button

  • {
    foreach (RepeaterItem rptItem in Repeater1.Items)
    {
    if (rptItem.FindControl(“lbtnTest”) != null)
    ((LinkButton)rptItem.FindControl(“lbtnTest”)).Enabled = false;
    }
    }