Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

submit form to new window 1

Status
Not open for further replies.

TheConeHead

Programmer
Aug 14, 2002
2,106
US
how do I submit a form to a new window?

[conehead]
 
no, that would simply submit to newWindow.html in the same window (unless a base target is defined).

What you'd want is:

Code:
<form name="f" action="newWindow.htm" method="post" [blue]target="_blank"[/blue]>

*cLFlaVA
----------------------------
[tt]0101 is binary code for "supreme programmer of omnipotent power"[/tt] - adam0101
[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
how do I submit a form to a new window?

That confused you? Wow.... [bigsmile]

[conehead]
 
That confused you? Wow....
Sorry for my slow mind, but couldn't "new window" also mean a different web document?
Code:
<form name="f" method="post" target="_blank">
<input type = "text"/>
<input type = "submit" value = "submit"/>
</form>
Just trying to help.

Glen
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top