我正在尝试为某些域启用CORS。我需要在我的web.config文件中执行此操作。我已经尝试过THIS解决方案,但我没有得到任何来自我的AJAX调用的回复。当我只使用1个值
时,我能够得到回复<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="http://domain.edu" />
</customHeaders>
</httpProtocol>
如何使用我的web.config文件来使用某些域?可能吗?我使用JavaScript来进行AJAX调用
$.ajax({
method:"GET",
url: 'http://domain.edu',
crossDomain:true,
success: function(result){
alert('reply');
},
error: function(result, textStatus, errorThrown){
alert('timeout/error');
alert("Text Status: "+textStatus);
alert("Error Thrown: " + errorThrown);
}
});