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

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 is

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

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 they

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

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 not

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, unfortunately,

Re: new window on redirect

2004-07-13 Thread Tim McGeary
Wiggins d Anconia wrote: snip 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

Re: new window on redirect

2004-07-13 Thread Jan Eden
Tim McGeary wrote on 13.07.2004: Wiggins d Anconia wrote: snip 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

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: snip 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

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: snip 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?