Redirect without menubar

  • Thread starter Thread starter Todd Lu
  • Start date Start date
T

Todd Lu

I am trying to redirect a login page to another page after validating the
username and password. I am currently trying to use javascript with the
window.open command but this leaves the window.opener to stay open. is
there a good way to redirect to a new form in .net 2003 without having the
menubar present and the parent form to close?

Thanks,

Todd
 
YOu can close the opener window from the opened window. I
think the command is this.opener.close() or something
similar.
Call this on load in the document that is opened, and it
will close the 'parent' behind it.
 
Ben,
thanks for the reply. I have tried this with window.opener.close() and
your recommendation of this.opener.close(). The problem is that I get is a
message that the selected window is closing. All I want to do is to
redirect to a new page without the menubar and no parent window. Do you
know of any other way?

Thanks,

Todd
 
Back
Top