如果我使用查詢字符串返回的存儲在URL中的東西的價值,然後填充一個下拉列表與它象下面這樣的值:查詢字符串以填充下拉框動態
industry = Request.QueryString["ind"].ToString();
industrydropdown.SelectedValue = industry;
category = Request.QueryString["cat"].ToString();
CatDropDown.SelectedValue = category
CatDropDown使用代碼自動填充SelectedIndexChanged後面的行業下拉菜單中啓用AutoPost Back。
protected void industrydropdown_SelectedIndexChanged(object sender, EventArgs e)
{
string value = industrydropdown.SelectedValue;
switch (value)
{
case "Ind1":
CatDropDown.Items.Clear();
CatDropDown.Items.Add("Categories for Ind1");
break;
case "Ind2":
CatDropDown.Items.Clear();
CatDropDown.Items.Add("Categories for Ind2");
break;
}
我怎麼會去的時候,我還使用上的SelectedIndexChanged在填寫第二個下拉從查詢字符串填充我CatDropDownList。這可能嗎?