我通过该代码完成关闭过程。
ScriptManager.RegisterStartupScript(this, GetType(), "", "parent.$.fancybox.close();", true);
没问题它的工作但我只想在点击按钮时刷新父页面。
现在父页总是刷新。
iframe关闭时如何将参数传递给父页面。因为我想控制刷新。
在父页面的fancbox代码中:
$(".various").fancybox({
maxWidth: 850,
maxHeight: 650,
fitToView: false,
width: '70%',
height: '70%',
autoSize: false,
closeClick: false,
openEffect: 'none',
closeEffect: 'none',
afterClose: function () {
parent.location.reload(true);
}
});
forexample
afterClose: function () {
//if (parameterFromIframe==1) {
parent.location.reload(true);
//}
}
感谢您的帮助