Horje
c# loop through repeater items Code Example
c# loop through repeater items
foreach (RepeaterItem item in repeater.Items)
{
    if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
    {
        CheckBox chk = (CheckBox)item.FindControl("ckbActive");

        bool r = chk.Checked;
    }
}




Csharp

Related
how get the user show mvc controller core 3.1 Code Example how get the user show mvc controller core 3.1 Code Example
and operator in c# Code Example and operator in c# Code Example
get connection string from web.config in c# Code Example get connection string from web.config in c# Code Example
c# randize list Code Example c# randize list Code Example
or in if statement c# Code Example or in if statement c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10