I want to know if it's possible to find a control in a repeater but by approximation. I mean, I have some controls with end "....EditMode" and I want to catch them all and modify some attribute
Something like this
foreach(RepeaterItem item in repeater1.Items)
{
HtmlGenericControl divEditMode = item.FindControl("....IndexOf ("EditMode")");
if(divEditMode != null)
{
divEditMode.Visible = false;
}
}