<asp:ScriptManager ID="ScriptManager1" runat="server" /><asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"><ContentTemplate><asp:DropDownList ID="CtyDropDown" runat="server" AutoPostback="true" OnSelectedIndexChanged="BindDistrictDropdown" /><asp:DropDownList ID="DistrictDropDown" runat="server" /></ContentTemplate><Triggers><asp:AsyncPostBackTrigger ControlID="CtyDropDown" EventName="SelectedIndexChanged" /></Triggers></asp:UpdatePanel><asp:Button ID="AddCtyBtn" runat="server" Text="Add City/County"/> Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.InitDim sfb As New SFBLogic CongDistDataList.DataSource = sfb.GetCongressDistrictInfo(1)CongDistDataList.DataBind()CongDistDropDown.DataSource = sfb.GetAllCongressionalDistrictsCongDistDropDown.DataTextField = "CongressionalDistrict"CongDistDropDown.DataValueField = "CongressionalDistrict"CongDistDropDown.DataBind()CtyDropDown.DataSource = sfb.GetAllCitiesAndCounties()CtyDropDown.DataTextField = "Name"CtyDropDown.DataValueField = "CityCountyID"CtyDropDown.SelectedIndex = 1CtyDropDown.DataBind()DistrictDropDown.DataSource = sfb.GetCtyDistricts(1)DistrictDropDown.DataValueField = "DistrictID"DistrictDropDown.DataBind()End Sub