// ドロップダウンリスト1に都道府県をセット this.DropDownList1.DataSource = dsPref; // 選択肢に表示するXMLのタグ(pref_name)を指定 this.DropDownList1.DataTextField = "pref_name"; // 選択肢の値(実体)とするXMLのタグ(pref_code)を指定 this.DropDownList1.DataValueField = "pref_code"; // ドロップダウンリストをバインドする。 this.DropDownList1.DataBind(); this.DropDownList2.DataSource = dsScat; this.DropDownList2.DataTextField = "category_s_name"; this.DropDownList2.DataValueField = "category_s_code"; this.DropDownList2.DataBind(); // 都道府県の初期値を「東京」に設定する this.DropDownList1.SelectedValue = "PREF13"; // 業種の初期値を「家庭料理」に設定する this.DropDownList2.SelectedValue = "CTG106";