类似 
string id="abxc";
string name="xxx";
能否下面
Response.Redirect("abc.aspx?ID="+id & NAME= + name);该如何做?

解决方案 »

  1.   

    Response.Redirect("abc.aspx?ID="+id+"& NAME="+name); 
      

  2.   

    Response.Redirect("abc.aspx?ID="+id +"& NAME= "+ name); 
      

  3.   

    string id="abxc";
    string name="xxx";
    Response.Redirect("abc.aspx?ID="+id+"&NAME="+name);
      

  4.   

    string id="abxc"; 
    string name="xxx"; 
    Response.Redirect("abc.aspx?ID="+id+"&NAME="+name);
      

  5.   

    Response.Redirect("abc.aspx?ID="+id+"&NAME="+ name); 
      

  6.   


    string id="a"; //传递参数的值
    string name="b";//传递参数的值 
    Response.Redirect("abc.aspx?ID="+id+"&NAME="+name);
      

  7.   

    string id="a"; //传递参数的值
    string name="b";//传递参数的值 
    Response.Redirect("abc.aspx?ID="+id+"&NAME="+name);
    string id = Rquest[0];
    string name = Rquest[1];OK!