我用Response.Redirect()只能在原页面基础上打开新页面,可我现在要打开新的页面,怎么办?还需要传参数给新页面!在线等!!!有大虾帮忙吗?谢谢!!

解决方案 »

  1.   

    http://community.csdn.net/Expert/topic/4050/4050055.xml?temp=.7456934
      

  2.   

    http://community.csdn.net/Expert/topic/4050/4050055.xml?temp=.7456934
    里面
    NameValueCollection coll=Request.QueryString中的NameValueCollection 是什么哪来的?
      

  3.   

    <script language=javascript> windows.open("aa.aspx")</script>
      

  4.   

    大哥们。我是既要在另一个页面打开,还要传参数过去!怎么实现??windows.open("aa.aspx")可以传参数马?Response.Redirect("aa.aspx")也不能打开另外的一个新页面阿,只是在原来页面上打开。。有大虾帮忙吗。
      

  5.   

    response.write("<script>javascript:window.open('')</script>")
      

  6.   

    windows.open("aa.aspx")可以传参数马?
    ------------------------
    string tempString = "<script>javascript:window.open('youString?fid="+youVal')</script>";
    response.write(tempString);
      

  7.   

    出错啊!string tempString = "<script>javascript:window.open('youString?fid="+youVal')</script>";这句引号有问题??
      

  8.   

    string tempString = "<script>javascript:window.open('youString?fid="+youVal+"')</script>";
      

  9.   

    function OpenNewWindow(string a,string b)
    {
    var sReturnValue;
    if(a=="0")
    {
       sRtValue=window.showModalDialog("Page=ax.aspx?Title=打开新页面1&b="+a,"","dialogHeight=560px;dialogWidth=580px;status=no;resizable=no;help=no;scroll=yes");

    }
    else
    {
       sRtValue=window.showModalDialog("Page=ax.aspx?Title=打开新页面2&b="+a,"","dialogHeight=560px;dialogWidth=580px;status=no;resizable=no;help=no;scroll=yes");
    }