protected void RadComboBox1_SelectedIndexChanged(object sender, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)          {              // Get the Country DropDownList first.              RadComboBox ddlBranch = (RadComboBox)sender;               // Get the current GridView Row, from which the DropDownList is selected.              GridEditableItem currentRow = (GridEditableItem)ddlBranch.NamingContainer;               // Now let's find the City DropDownList on the same GridView Row.              DropDownList ddlCity = (DropDownList)currentRow.FindControl("ddlAgent");          ...
C#, VB.NET, SQL Server ,ASP.NET and Crystal Report and Net for Beginner.