Re: new window on redirect

2004-07-13 Thread Wiggins d Anconia
> > Jan Eden wrote: > > Tim McGeary wrote on 13.07.2004: > > > > > >>Wiggins d Anconia wrote: > >> > >>>>>Sort of. What I don't understand is why do you have to decide on > >>>>>the server side, post-request

Re: new window on redirect

2004-07-13 Thread Tim McGeary
Jan Eden wrote: Tim McGeary wrote on 13.07.2004: Wiggins d Anconia wrote: Sort of. What I don't understand is why do you have to decide on the server side, post-request that the result will be in a new window? Couldn't the original "portal" page just use targets like nor

Re: new window on redirect

2004-07-13 Thread Jan Eden
Tim McGeary wrote on 13.07.2004: >Wiggins d Anconia wrote: > >>>>Sort of. What I don't understand is why do you have to decide on >>>>the server side, post-request that the result will be in a new >>>>window? Couldn't the original "por

Re: new window on redirect

2004-07-13 Thread Tim McGeary
Wiggins d Anconia wrote: Sort of. What I don't understand is why do you have to decide on the server side, post-request that the result will be in a new window? Couldn't the original "portal" page just use targets like normal? It's a database driven site and so, unfort

RE: new window on redirect

2004-07-13 Thread Thomas Bätzler
Tim McGeary <[EMAIL PROTECTED]> asked: > > Sort of. What I don't understand is why do you have to decide on the > > server side, post-request that the result will be in a new window? > > Couldn't the original "portal" page just use targets like no

Re: new window on redirect

2004-07-13 Thread Wiggins d Anconia
>Sorry, I didn't mean to not include everyone on my reply... You did the last time but not this time, hmph. > > Sort of. What I don't understand is why do you have to decide on the > > server side, post-request that the result will be in a new window? > > Couldn&#x

Re: new window on redirect

2004-07-13 Thread Tim McGeary
Wiggins d Anconia wrote: Please bottom post... I hate bottom posting... but alas... scroll down. :) Sorry, I didn't mean to not include everyone on my reply... The reason I need a new window (and I did actually mean _blank), is because this is for a Library portal site which has a li

Re: new window on redirect

2004-07-13 Thread Wiggins d Anconia
Please bottom post... > Sorry, I didn't mean to not include everyone on my reply... > > The reason I need a new window (and I did actually mean _blank), is > because this is for a Library portal site which has a limited window > view. Our users actually (almost) demand

Re: new window on redirect

2004-07-13 Thread Tim McGeary
Sorry, I didn't mean to not include everyone on my reply... The reason I need a new window (and I did actually mean _blank), is because this is for a Library portal site which has a limited window view. Our users actually (almost) demand a new window because they don't want to h

Re: new window on redirect

2004-07-13 Thread Wiggins d Anconia
> I want my web page redirect to open in a new window, as if I were > putting "target=_new" in the html of the URL. How can I do that using > CGI.pm's redirect? I have this: > > print $output->redirect($u) > > with $u being the URL I am redirecting, to

Re: new window on redirect

2004-07-13 Thread David Dorward
On 13 Jul 2004, at 14:37, Tim McGeary wrote: I want my web page redirect to open in a new window, as if I were putting "target=_new" in the html of the URL. Which isn't allowed under HTML. You are probably thinking of _blank. http://www.w3.org/TR/html4/types.html#h-6.16 How can

new window on redirect

2004-07-13 Thread Tim McGeary
I want my web page redirect to open in a new window, as if I were putting "target=_new" in the html of the URL. How can I do that using CGI.pm's redirect? I have this: print $output->redirect($u) with $u being the URL I am redirecting, too. Thanks, Tim -- Tim McGeary [EMAIL

Re: new window

2002-08-13 Thread zentara
On Mon, 12 Aug 2002 19:02:30 -0500, [EMAIL PROTECTED] (Mariusz) wrote: >When I submit any form that points to a certain cgi script a new page gets loaded: >www.domain.com/cgi-bin/myscript.cgi >Is it possible to execute the script and do not have the next page loading? If you put a form on an htm

new window

2002-08-12 Thread Mariusz
When I submit any form that points to a certain cgi script a new page gets loaded: www.domain.com/cgi-bin/myscript.cgi Is it possible to execute the script and do not have the next page loading? I guess I could use redirect and read what page person came from and redirect them back, or put some

Re: new window

2002-07-09 Thread charlie strauss
There are two ways to open a new window and fill it with cgi generated output. case 1: you have a web page. someonce clicks a link that is hyperlinked to the cgi. If you ALWAYS will want whatever the cgi returns to go to anew window then in the original page add TARGET = "my_new

Re: new window

2002-07-08 Thread Connie Chan
This is not a perl question, but html or javascript... 1. write in your html file 2. print "window.open=(.. )"; Rgds, Connie - Original Message - From: "Mariusz" <[EMAIL PROTECTED]> To: "perl" <[EMAIL PROTECTED]> Sent: Tuesday, July 09, 2

new window

2002-07-08 Thread Mariusz
How can I execute the cgi and print the HTML text into a new window? In other words, can I open new browser window using perl? thank you, M