or
string[] args = Request.Form["radGridClickedRowIndex"].Split('_');int indice = Convert.ToInt32(args[args.Length - 1]);string UId = Request.Form["radGridClickedTableId"];GridTableView tableView;tableView = this.Page.FindControl(UId) as GridTableView;string userName = ((tableView as GridTableView).Items[indice] as GridDataItem)["UserName"].Text;string roleName = ((tableView as GridTableView).Items[indice] as GridDataItem)["RoleName"].Text;Roles.RemoveUserFromRole(userName, roleName);tableView.Rebind();<asp:RadioButton ID="RadioButtonWork" runat="server" Checked="true" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" /><asp:RadioButton ID="RadioButtonInvoice" runat="server" Checked="false" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" /><asp:RadioButton ID="RadioButtonHome" runat="server" Checked="false" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" /><telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="false">...</telerik:RadAjaxManager><telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadioButtonWork"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" /> <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadioButtonInvoice"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" /> <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadioButtonHome"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" /> <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy>