winManageFile = new Ext.Window({
id: "winManageFile",
title: shead,
width: 680,
height:530,
maximizable: false,
html: '<iframe id="frmRight" name="frmRight" scrolling="yes" frameborder="0" width="100%" height="100%" src=AddContract.aspx?EditType=' + EditType + '&Fsn=' + rowid + '></iframe>',
});
winManageFile.show();//显示编辑窗口 Ext.get('editDataButton')
closewin() 方法;
<script type="text/javascript">
function closewin() {
alert('44');
var win = parent.Ext.getCmp('winManageFile');
if (win) { win.close(); }
}
</script>
在AddContract.aspx 页面中我在添加事件后关闭窗口
Page.ClientScript.RegisterStartupScript(Page.GetType(), "操作成功", "<script language='javascript'>closewin();</script>"); //;
但是老是说找不到对象,不知道什么原因求解,或者求解更好的关闭方法