User-1044034148 posted
Hi i have a repeater with several textboxes, when the button is clicked for the row in RepeaterCommandEventArgs i need to access the related texboxes so i can get the values, how can i do this?
protected void rptAddressList_Command(object sender, RepeaterCommandEventArgs e)
{
if (e.CommandName == "select")
{
//get the related controls for the selected row???
}
}