在我的网站中,当用户登录时,他将拥有像 Editmyaccount 这样的选项,他可以在其中编辑详细信息。这里我显示他在 DB 的注册页面中输入的值,我有两个 DDL,我正在显示适当的国家和用户选择的州,但我想显示其他一些国家和州,我该怎么做?
DropDownList1.DataSource = ProfileMasterDAL.bind();
DropDownList1.DataBind();
DropDownList1.Items.Insert(0, "--Select country--");
DropDownList1.SelectedIndex = 0;
实际上我正在使用会话从其他页面获取 DDL
DropDownList1.Items.Add(new ListItem(Session["country"].ToString()));
DropDownList2.Items.Add(new ListItem(Session["state"].ToString()));