首先需要在你的DropDownList1控件下面增加可选择项,同时将DropDownList1的AutoPostBack属性改为True:
If Not Page.IsPostBack then
DropDownList1.Items.Clear()
DropDownList1.Items.Add("sohu")
DropDownList1.Items.Add("sina")
End If
然受在你的DropDownList1的change事件下执行下面代码就可以了
If DropDownList1.SelectedIndex > -1 then
If DropDownList1.SelectedIndex = 0 then
Response.Redirect("http://www.sohu.com")
else
If DropDownList1.SelectedIndex = 1 then
Response.Redirect("http://www.sina.com")
End If
End If
记住给分啊!