asp.net中WebResponse 跨域訪問示例

前兩天,一個朋友讓我幫他寫這樣一個程序:在asp.net裏面訪問asp的頁面,把數據提交對方的數據庫後,根據返回的值(返回值爲:OK或ERROR),若是爲OK再把填入本地數據庫。當時,想固然,以爲很簡單,用js的xmlhttp ,若是根據response 的值是「OK」就執行提交本地數據庫。很快寫完發過去,讓朋友試試,一試發現不行,後來一問,原來是跨域訪問,我給忽略了,因而讓朋友把asp改爲web service,可朋友說程序是合做公司作的,只會asp,不會用web service ,狂暈ing。沒辦法,只能請出asp.net的 WebResponse了,不少網站採集程序都是用這個。初版寫完了,卻是能夠跨域訪問了,不過是亂碼,調整有關編碼的方式,終於能夠了。這個應用雖小但是涉及的知識點很多:php

一、xmlhttp 不能跨域提交。html

固然XMLHttpRequest仍是權宜的解決的方法,jquery

二、webresponse能夠進行跨域訪問,不過要注意web

1)、get和post的區別。
2)、注意Timeout的問題。ajax

這些都是簡單的程序,記下來備忘,高手就沒必要看了。數據庫

不廢話了,下面是相關的c#代碼:json

 

 代碼以下 複製代碼
/// <summary>
        /// 使用Post方法發送數據
        /// </summary>
        /// <param name=」pi_strPostURl」>提交地址</param>
        /// <param name=」pi_strParm」>參數</param>
        /// <returns></returns>      
        public static string PostResponse(string pi_strPostURl, string pi_strParm)
        {
            try
            {
                //編碼
                Encoding t_Encoding = Encoding.GetEncoding(「GB2312「);
        Uri t_Uri = new Uri(pi_strPostURl);             
                byte[] paramBytes = t_Encoding.GetBytes(pi_strParm);
                WebRequest t_WebRequest = WebRequest.Create(t_Uri);
        t_WebRequest.Timeout = 100000;
                //設置ContentType
                t_WebRequest.ContentType = 「application/x-www-form-urlencoded「;
               
                t_WebRequest.Method = EnumMethod.POST.ToString();                //初始化
                using (Stream t_REStream = t_WebRequest.GetRequestStream())
                {
                    //發送數據
                    requestStream.Write(paramBytes, 0
, paramBytes.Length);
                }
               
                WebResponse t_WebResponse =
 t_WebRequest.GetResponse();
               
                using (StreamReader t_StreamReader = new StreamReader(t_WebResponse .GetResponseStream(), t_Encoding))
                {
                    return t_StreamReader.ReadToEnd();
                }
            }
            catch
            {
                return 「ERROR「;
            }
        }
 
public static string GetResponse(string pi_strPostURl, string pi_strParm)
        {
            try
            {
                //編碼
                Encoding t_Encoding = Encoding.GetEncoding(「GB2312「);              
                Uri t_Uri = new Uri(string.Format(「{0}?{1}「, pi_strPostURl, pi_strParm));
               
                WebRequest t_WebRequest =
 WebRequest.Create(t_Uri);
              
                t_WebRequest.Timeout = 100000;
                t_WebRequest.ContentType = 「application/x-www-form-urlencoded「;
              
                t_WebRequest.Method = EnumMethod.GET.ToString(); 
                WebResponse t_WebResponse =
 t_WebRequest.GetResponse();
               
                using (StreamReader t_StreamReader = new StreamReader(t_WebResponse.GetResponseStream(), t_Encoding))
                {
                    return t_StreamReader.ReadToEnd();
                }
            }
            catch (Exception e)
            {
                return e.ToString();
            }
        }
public static string AtionResponse(string pi_Url, EnumMethod pi_Method)
        {
             string t_strUrlPath=「」;
             string t_parm = 「」;           
             Uri  t_Url = new Uri(pi_Url);               
             t_parm= t_Url.Query;
             if (parmString.StartsWith(「?「))
                    t_parm = t_parm.Remove(0, 1);               
             t_strUrlPath = 「http://「 + t_Url .Authority + t_Url .AbsolutePath;
            return GetResponse(t_strUrlPath, t_parm, pi_Method);
        }
 public enum EnumMethod
        {
            POST,
            GET
        }

如今jquery ajax支持跨域了,下面看個實例咱們可對上面進行處理成json數據便可c#

JQuery.getJSON也一樣支持jsonp的數據方式調用。跨域

客戶端JQuery.ajax的調用代碼示例:app

 代碼以下 複製代碼

$.ajax({
 type : "get",
 async:false,
 url : "http://www.xxx.com/ajax.do",
 dataType : "jsonp",
 jsonp: "callbackparam",//服務端用於接收callback調用的function名的參數
 jsonpCallback:"success_jsonpCallback",//callback的function名稱
 success : function(json){
  alert(json);
  alert(json[0].name);
 },
 error:function(){
  alert('fail');
 }
});

服務端返回數據的示例代碼:

 代碼以下 複製代碼
public void ProcessRequest (HttpContext context) {
 context.Response.ContentType = "text/plain";
 String callbackFunName = context.Request["callbackparam"];
 context.Response.Write(callbackFunName + "([ { name:"John"}])");
}

        而jquery.getScript方式處理的原理相似,也一樣須要服務端返回數據上作支持,不一樣的是服務端返回的結果不一樣。不是返回一個callback的function調用,而是直接將結果賦值給請求傳遞的變量名。客戶端則是像引入一個外部script同樣加載返回的數據 來源:http://www.111cn.net/net/net/56393.htm

相關文章
相關標籤/搜索