asp.net中如何实现选择dropdownlist中的一项后跳转到相应的页面(用c#实现)

2025-01-04 14:10:43
推荐回答(3个)
回答1:

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Redirect(DropDownList1.SelectedValue);//DropDownList1.SelectedValue设为要跳转的路径
}

回答2:

可能我的方法比较笨。
dropdownlist 选中后获取dropdownlist 选中值,然后根据选中值判断跳转到指定页面。

不知道这样行不行?

回答3:

这个完全满足你的需求~:)