Browser in IE6 on Windows Server 2003 closing automatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I am trying to open an attachment in IE6 on Windows Server 2003, the
attachment opens but the browser window,which opened the attachment, closes
automatically. Anyone know the fix?
 
Sankar said:
When I am trying to open an attachment in IE6 on Windows Server 2003, the
attachment opens but the browser window,which opened the attachment, closes
automatically. Anyone know the fix?
Additional Info:
window.opener = self;
window.open('MyPage');
window.close();
This is the code which opens MyPage in the second window and closes my first
window. I am trying to open the attachment from the second window in 'MyPage'.
 
Hi Sankar,

Sankar said:
Additional Info:
window.opener = self;
window.open('MyPage');
window.close();
This is the code which opens MyPage in the second window and closes my
first
window. I am trying to open the attachment from the second window in
'MyPage'.

Just delete the line containing window.close()

Kind regards

Hans
 
Back
Top