Click here to Skip to main content
15,893,564 members

Comments by ADI@345 (Top 171 by date)

ADI@345 20-Jun-18 7:27am View    
Sir, i have to check checkbox based on textbox value automatically.
ADI@345 20-Jun-18 7:27am View    
List<string> term = new List<string>();

foreach (RepeaterItem item in Repeater1.Items)
{
CheckBoxList CheckBoxList1 = (CheckBoxList)item.FindControl("CheckBoxList1");
foreach (ListItem item1 in CheckBoxList1.Items)
{
if (item1.Selected == true)
{

term.Add(item.ToString());
TextBox1.Text = term.Count.ToString();


}

}
ADI@345 20-Jun-18 7:17am View    
checkboxlist
ADI@345 29-May-18 7:55am View    
i have solved this problem..
ADI@345 28-May-18 2:50am View    
Plz reply