protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Redirect(DropDownList1.SelectedValue);//DropDownList1.SelectedValue设为要跳转的路径
}
可能我的方法比较笨。
dropdownlist 选中后获取dropdownlist 选中值,然后根据选中值判断跳转到指定页面。
不知道这样行不行?
这个完全满足你的需求~:)