I'm programming a form in ColdFusion/HTML. Does anybody know of a way to get the results of form submittal to open in a new page and leave the original page up?
Thank you.
AKat
ideffect
5:42 pm on Sep 7, 2005 (gmt 0)
I'm not sure if this is what you are looking for but here is what I do to have the form results open in a new window... <form action="a1.php" method="post" target="_blank">
The target="_blank" is the key...
AKat
6:50 pm on Sep 7, 2005 (gmt 0)
Ahhh. Thank you. I knew how to do it with links, but I didn't know it would work with forms as well. That helps me a lot. Thanks again.