Forum Moderators: phranque

Message Too Old, No Replies

Form post question

         

kevinj

5:07 pm on Feb 17, 2004 (gmt 0)

10+ Year Member



I have a login page that sends the form information to another page that I need to open in a new window. Is there an easy way to have the form post open up in a new window?

Mike12345

5:13 pm on Feb 17, 2004 (gmt 0)

10+ Year Member



target="_top" in you <form> tag.

kevinj

5:56 pm on Feb 17, 2004 (gmt 0)

10+ Year Member



I tried the _top in the form tag and it didn't work for me. Any other thoughts?

john_k

9:13 pm on Feb 19, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It should be target="_blank", not top.
<form name="something" method="post" action="handle-this-form.cgi" target="_blank">