private void BindState(Guid?country_Id) { var resultState = _objMaster.GetStateMasterData(new MDMSVC.DC_State_Search_RQ() { Country_Id = country_Id }); if (resultState != null) { if (resultState.Count > 0) { ddlStateEdit.DataSource = resultState; ddlStateEdit.DataValueField = "State_Id"; ddlStateEdit.DataTextField = "State_Name"; ddlStateEdit.DataBind(); ddlStateEdit.Items.Insert(0, new ListItem { Selected = true, Text = "- ALL -", Value = "0" }); } } }