Re: dispatch to new window in web browser possible?

2002-05-06 Thread Bert Van Kets
There is NO WAY you can open a new window from the server side. Client side JavaScript (or VBscript in IE for the picky ones) is the only way to do this. There are different approaches to your problem, but they all involve some client side coding. Bert At 19:09 4/05/2002 +0200, you wrote:

RE: dispatch to new window in web browser possible?

2002-05-06 Thread Vadim Gritsenko
From: Bert Van Kets [mailto:[EMAIL PROTECTED]] There is NO WAY you can open a new window from the server side. Thanks GOD it is so!!! Otherwise web would be nightmare... Client side JavaScript (or VBscript in IE for the picky ones) is the only way to do this. There are different

Re: dispatch to new window in web browser possible?

2002-05-04 Thread a000
Thanks for your reply. I considered form ... target=blank as well before I posted this question. However you should know that currently my architecture utilizes only one form trag to which various user inputs (e. g. buttons) submit. On serverside I gather the information which action was

Re: dispatch to new window in web browser possible?

2002-05-03 Thread Andrew Timberlake
You can achieve this in HTML by setting the target of your form to _blank which will post the results to a newly openned window. The javascript solution is better if you want more control over how the newly openned window looks. Andrew On Fri, 2002-05-03 at 09:38, yuryx wrote: [EMAIL

RE: dispatch to new window in web browser possible?

2002-05-03 Thread Matthieu Benéteau
Have a look at this tutorial : http://tech.irt.org/articles/js128/index.htm It's quite helpful. Regards, Matthieu -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 3 mai 2002 08:25 Objet : dispatch to new window in web browser possible?

Re: dispatch to new window in web browser possible?

2002-05-03 Thread Bert Van Kets
I just want to add that you can name windows and submit data between them. It is perfectly possible to gather data in 1 window and always show the result in a second window, without opening a new window every time. The _blanc parameter will open an new window with every submit. You do not