比如:http://www.testurl.com/index.aspx?fileList=list.ls&fileName=3.avi&fileName=5.avi&fileName=9.wmv
这样的话,Request对象怎么取啊?

解决方案 »

  1.   

    fileName=3.avi,5.avi,9.wmv 这样不行么
      

  2.   

    fileName=3.avi,5.avi,9.wmv ,建议是这样传参数,在接收页面再分割开来。
      

  3.   

    Request.QuesyString[]重载版本里,除了string参数外,还有一个int啊.楼主!!!
      

  4.   

    Request.QuesyString[]重载版本里,除了string参数外,还有一个int啊.
    -------------------------------------------------------------
    ??能解释的详细一点吗?我查MSDN,没有int嘛,
    MSDN: public NameValueCollection QueryString { get; }
      

  5.   

    string ss = "";
    for(int i=0;i<this.Request.QueryString.Count;i++)
    {
    ss += this.Request.QueryString[i].ToString() +"<br>";
    }
    this.Response.Write("");