Server1に、asp:Chartを使用してグラフを表示するWebページがあります。私のアプリはServer2にデプロイされ、以下のようにdivを読み込もうとします
$("#div").load("http://server1/charts", function(response, status, xhr) {
if (status == "error") {
alert("Error: " + xhr.status + " " + xhr.statusText);
}
});
残念ながら、Error: 0 No Transport
提案を歓迎するため、エラーが発生します。