不会吧。
http://xml.sz.luohuedu.net/xml/ShowDetail.asp?id=49ML4AO8-5PB3-4KNY-NJZD-LJOIOXV4M1X4

解决方案 »

  1.   

    不可能吧???
    是不是取值时取错了?response.Write Request.Form.Count//个数
    response.Write Request.Form.Item//值
    response.Write Request.Form.Key(1)//如:index.asp?id=1中的id
      

  2.   

    我不是用Form来传的,而是通过自己写的字符串:
    window.open('popup.aspx?param0=a&param1=b','_blank','directories=no') 这样传的,还是解决不了
      

  3.   

    如果你实在不行,可以考虑使用session["NO1"]=XXX,session["NO2"]=XXX,session["NO3"]=XXX,~~~~~
    在你取数据的时候用:
    YYY=(string)session["NO1"]~~~~(先假设你存储的是string)!
    这样一般很容易实现
    祝你好运!