delete row from repeater in asp.net c# code example
Example: delete database items from repeater asp .net
void Repeater_ItemCommand(Object Sender, RepeaterCommandEventArgs e) {
if( e.CommandName == "Delete" ) {
int id = e.CommandArgument.ToString().Numeric();
db.SPs.SpDeleteAccount(id).Execute();
// the rest of your code
}
}