我在Server1中有一個網頁,它使用asp:Chart顯示圖表。我的應用程序部署在Server2上,並試圖加載我的div如下將asp:從另一個服務器的圖表加載到我的div
$("#div").load("http://server1/charts", function(response, status, xhr) {
if (status == "error") {
alert("Error: " + xhr.status + " " + xhr.statusText);
}
});
不幸的是,我得到一個錯誤Error: 0 No Transport
任何建議都歡迎。
您是否設置了[跨源資源共享](http://en.wikipedia.org/wiki/C ross-origin_resource_sharing)標頭在server1上? – Musa 2012-08-03 18:29:03
@Musa,謝謝你的幫助。我在頁面加載事件中添加了'Response.AppendHeader(「Access-Control-Allow-Origin」,「*」);'。但它沒有幫助 – user007 2012-08-07 20:20:30