Response.Redirect()能用POST的方法传递参数吗?(三个参数)谢谢先

解决方案 »

  1.   

    不能,只能用Get传递。
    不过你可以用
    Server.Transfer(),这样POST的可以取得到。
      

  2.   

    回复人: luckyprg(lucky) 老大怎么用教教我吧
      

  3.   

    可以啊
    string url = Request.Form["url"];
    Response.Redirect(url);
      

  4.   

    哈,顶了刚才试了下,不可以,不过可以使用别的方法获得,通过地址栏或者session等
      

  5.   

    Response.Redirect()只能传递url吧!
      

  6.   

    我的不行???你要在提供的页面的Form里面加上name为url的表单控件耶...
      

  7.   

    不能,你可以在目标页取querystring
    或者你用HttpWebRequest去post数据
    或者你通过form提交数据
      

  8.   

    If you get rid of the "Runat=Server", then you can get it smoothly. But it would be lost the postback feature.