dropdownlist事件添加
Response.Redirect("***.html");

解决方案 »

  1.   

    将autopost=true;
    <asp:DropDownList id="DropDownList1" AutoPostBack="True" runat="server"></asp:DropDownList>private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)
    {
    Response.Redirect(DropDownList1.SelectedItem.Text);
    }
      

  2.   

    dropdownlist.autopostback = true;
    把dropdowlist的value设置为与url有关
    在selectchange中写代码:
    string url= "相应代码" + dropdownlist.selectvalue
    Response.Redirect(url);
      

  3.   

    首先,把AutoPostBack设置为TRUE,然后再
    private void dropdownlist1_SelectedIndexChanged(object sender, System.EventArgs e)
    {
    Response.Redirect(dropdownlist1.SelectedValue.ToString());
    }
      

  4.   

    将value设置为你的url地址,指明ONSelectedIndex对应的事件即可