我开发了通过 AD 登录的 Intranet 应用程序。在我的应用程序中,我需要从同一服务器上的另一个应用程序加载网页并在对话框中显示此页面。
$('#btnExample').click(function () {
var id = getCurrentId();
var url = 'http://SERVERNAME:81/Runtime/Forms/formDetail.aspx?SN=' + id;
jQuery.support.cors = true;
$('#pagePreview').load(url, function (response, status, xhr) {
alert(xhr.status + " " + xhr.statusText);
});
$('#pagePreview').dialog(
{
draggable:false,
height: 768,
width: 1024,
modal: true,
});
return false;
});
加载函数抛出错误:拒绝访问。为什么?在我的应用程序中,用户由 Active Directory 记录,而在第二个应用程序中,AD 也记录了...
有没有其他方法可以解决?我需要在我的网站中的 dilog 中显示此页面。谢谢