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 that the result will be in a new > >window? Couldn't the original "portal" page jus

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 normal? It's a database drive

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 "portal" page just use targets like normal? >>> >>>It's a data

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, unfortunately, it is all server s

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 normal? > It's a database driven site and so, unfor

Re: new window on redirect

2004-07-13 Thread Wiggins d Anconia
Please group reply so others can help and be helped. > Wiggins d Anconia wrote: > > Please bottom post... > > I hate bottom posting... but alas... scroll down. :) > Yes but it makes it easier to follow (you can always snip so as not to force a long scroll) > >>Sorry, I didn't mean to no

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 limited windo

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 a new window because the

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 have to hit their

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, too. > The problem is that the redirect i

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 I do that using CGI

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

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_page" in

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, 2002 12:08 PM Subject: new window How can