ajax跨域訪問代理檔案下載(asp、php、asp.net)

來源:互聯網
上載者:User
最近做東西遇到了ajax跨域(cross domain)訪問的問題,最後採用了Application Proxies 方式解決,即在本域內放置一個代理檔案(視本域支援的開發語言選定asp、asp.net或是其他),此代理檔案將url參數(QueryString)發送到目標域對應頁面擷取html代碼,然後輸出。ajax直接存取這個代理檔案以達到跨域的目的。
基於asp.net的跨域訪問代理檔案c#代碼如下:<%@ Page Language="C#" AutoEventWireup="true"  ResponseEncoding="utf-8" %>
<%@ Import Namespace=System.Net %>
<%@ Import Namespace=System.IO %>

<script runat="server">
    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);

        string sourceUrl = "http://devspy.net";
        this.Page.Response.Write(TransferHtmlPage(string.Concat(sourceUrl, "?", this.Page.Request.QueryString)));
    }
    
    public string TransferHtmlPage(string url)
    {
        string result = string.Empty;
        try
        {            
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
            result = reader.ReadToEnd();
        }
        catch(Exception ex)
        {
            return string.Format(@"<p style='color:red;text-align:center;'>伺服器擷取檔案內容出錯:{0}</p>", ex.Message);
        }

        if (!CheckVersionWaterMark(result))
            return @"<p style='color:red;text-align:center;'>版本浮水印失效,請聯絡相關技術人員。</p>";
        
        return result;
    }
    
    public bool CheckVersionWaterMark(string inputString)
    {
        return true;//不驗證浮水印了
        //string pattern = "WaterMark";
        //return Regex.IsMatch(inputString, pattern, RegexOptions.IgnoreCase);
    }

</script>


另外還有基於asp和php的實現,不再列出,感興趣的可以下載包含這三個檔案的壓縮包:
http://files.cnblogs.com/cncxz/ajaxProxy.rar

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.