高手门能否说得详细一点,谢谢了!

解决方案 »

  1.   

    xxx.aspx?a=value1&&b=value2
    好像这样可以
      

  2.   

    <script type="text/javascript">
    function GE(a){return document.getElementById(a);}
    function Check(){
    var X=new XMLHttpRequest();
    if(X){ X.onreadystatechange=function(){
    if(X.readyState==4){
    if(X.status==200){
    eval(X.responseText)
    }
    else{GE('msg').innerHTML=X.statusText}
    }
    else{GE('msg').innerHTML="正在获取数据...<img src=../img/loading.gif>"}
    };
    X.open('POST','ajax.aspx?classtype='+GE('classtype').value,true);
    X.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
    var SendData = '';
    X.send(SendData)
    }
    else{
    GE('msg').innerHTML='你的浏览器不支持XMLHttpRequest'
    }
    }
    </script>classtype为一个TEXTBOX,把多个TEXTBOX的值按上面规则或许然后抛出到一个URL上
      

  3.   

    有很多种方法,如果这个URL和你的不是一个在同一个APP内,那么用PAGE传递吧:
    http://url?param1=value1&param2=value2&param3=value3
      

  4.   

    照这种方式
    HttpWebRequest myReq =(HttpWebRequest)WebRequest.Create("http://www.contoso.com/dfsdf.asp");
    之后要怎么写?
      

  5.   

    照这种方式
    HttpWebRequest myReq =(HttpWebRequest)WebRequest.Create("http://www.contoso.com/dfsdf.asp");
    之后要怎么写?----------------
    HttpWebRequest myReq =(HttpWebRequest)WebRequest.Create("http://www.contoso.com/dfsdf.asp?变量名=值");
      

  6.   

    一般这种情况下你要用插件看http的头
      

  7.   

    搂主考虑的问题很值得思考。主要是安全上考虑,否则人家直接向你页面post数据,如果成功了,权限将成为空谈