<%@ Page Language="c#" %>
<script Language="c#" runat="server">
  void Page_Load(object source, EventArgs e)
  {
    if (!(IsPostBack))
    { 
      MyButton.Text = "OK";
      MyDropDownList.Items.Add("http://www.microsoft.com");
      MyDropDownList.Items.Add("http://www.wrox.com");
      MyDropDownList.Items.Add("http://msdn.microsoft.com");
    }
  }
  public void Click (object sender,EventArge e)
  {
    Response.Redirect(MyDropDownList.SelectedItem.Text);
  }
</script>
<html>
  <body>
    <form id="WebForm1" method="post" runat="server">
      <asp:DropDownList id=MyDropDownList runat="server"/>
      <asp:button id=MyButton runat="server" OnClick="Click" Text=""/>
    </form>
  </body>
</html>Wrox书上的例子,网页重定向的问题,大家看看这段源码哪点出错了