Tuesday 19 January 2016

How to get selected rowindex in repeater asp.net

Below is the code to get selected rowindex in repeater.
RepeaterItem i = (sender as RadComboBox).NamingContainer as RepeaterItem;
int index = i.ItemIndex;