我正在使用asp.net主页/内容页面创建的asp.net Web应用程序。在这里,我打开window.open()
以从网格打开所选记录。一切都很好。
代码:
window.open(fileName, (new Date()).getMilliseconds(), 'width=' + wndWidth + ',height=' + wndHeight + ', left=' + wndX + ', top=' + wndY + ', toolbar=0, location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes, modal=yes');
问题:
现在我必须在jquery对话框中打开这个内容页面。由于某些限制,我无法使用单独的页面在jquery对话框中显示它。我如何以jquery对话框打开这个内容页面。
到目前为止我尝试过的代码:
var $panel = $('#dialog');
$.ajax({
url: fileName,
type: "GET",
dataType: "html",
cache: false,
beforesend: ShowLoader(),
async: true,
success: function (obj) {
HideLoader();
$panel.dialog({
height: 700,
width: 500
modal: true,
resizable: false,
title: 'title'
});
$panel.html(obj);
},
error: function (ex) {
HideLoader();
alert('Error in process please try again.');
}
});