up vote 1 down vote favorite
share [g+] share [fb]

I have a small form inside a table. POSTing that form creates a new entity. I then want users to see that new entity, but it should open in a new window so that the original view isn't lost.

(How) can I open the result of the form submission in a new window?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
<form ... target="windowName">

or

<form ... target="windowName" onsubmit="window.open(this.action, this.target, '...attributes...');return true;">

...attributes... can consist of the stuff documented at the mozilla developer center or MSDN

link|improve this answer
No! It can't be that easy! – sblundy Dec 10 '08 at 17:11
Here's some documentation on form.target: w3schools.com/tags/att_form_target.asp – sblundy Dec 10 '08 at 17:12
feedback

One request, one response. That is the way of the web.

If you want a new window after a post, you either need to post the request from the new window in the first place- perhaps opened via javascript- or post your data from that page to the same page and save a token so that when the page re-loads is can open a new windows -again, likely with javascript- and that new window's request already knows about the previous post.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.