Response.Redirect("webform1.aspx",true);

解决方案 »

  1.   

    Response.Redirect("webform1.aspx",true);
    可以转向新页
    要打开新窗口必须内嵌javascript
      

  2.   

    Response.Write("<script>open('webform1.aspx')</script>");
      

  3.   

    <A href=\"javascript:openScript('newmessage.aspx?id="+action.ToString()+"',500,400)\">"+Server.HtmlDecode(rs["title"].ToString())+"</A>
    其中,500,400是新窗口大小!
      

  4.   

    建一个新的webform,按要求设计后,比如建了个webform2,然后派生一个新的
    webform newform=webform2();
    然后newform.visible=true;