私のサイトでは、ユーザーがログインすると、詳細を編集できる Editmyaccount のようなオプションが表示されます。ユーザーが州を選択しましたが、他の国や州も一緒に表示したいのですが、どうすればよいですか?
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()));