Re: Fwd: how to refresh between different pages of the same script

2008-04-08 Thread Jenda Krynicky
From: "Pau Marc Munoz Torres" <[EMAIL PROTECTED]> > #! /usr/bin/perl > #use strict; > use CGI::Ajax; > use CGI; > > my $q = new CGI; > > my $concatter = sub { > > my $buffer = $ENV{'QUERY_STRING'}; > > my @pairs = split( /&/, $buffer ); > > foreach my $pair (@pairs) { > >

how to refresh between different pages of the same script

2008-04-08 Thread Pau Marc Munoz Torres
I have to modify a script to upload different data to a server, until now i did and script that ask you a question and capture the variable into a hash (see below), now, i would like to modify it and make something that allows me to ask different questions using the same script how can i do thi

Fwd: how to refresh between different pages of the same script

2008-04-08 Thread Pau Marc Munoz Torres
I have to modify a script to upload different data to a server, until now i did and script that ask you a question and capture the variable into a hash (see below), now, i would like to modify it and make something that allows me to ask different questions using the same script how can i do thi

auto refresh of the fields

2003-09-23 Thread parvez80
hello all, I need to build a application in perl that would display the live stock market prise to the users without having to press the refresh button for example some live match score are shown in the webpage a similer application i tryed to use the tag but that refreshes the whole page

RE: Forcing a refresh from within a CGI script

2003-04-02 Thread Bob Showalter
ng just the header line > > Location: http://www.domain.com/referrer.htm > > to the client after modifying the file. > > Firstly, I'm not at all sure if this is the preferred way to force a > refresh, and secondly it doesn't always work as the client browser > belie

Forcing a refresh from within a CGI script

2003-04-02 Thread Rob Dixon
n.com/referrer.htm to the client after modifying the file. Firstly, I'm not at all sure if this is the preferred way to force a refresh, and secondly it doesn't always work as the client browser believes it has a valid cached copy of the page and refuses to reload it. Can someone help me t

Re[2]: Refresh dynamic content using query_string

2002-06-07 Thread Jason Ostrom
on David T-G> Jason -- David T-G> ...and then Jason Ostrom said... David T-G> % David T-G> % I was wondering if there was any way to refresh and have the same David T-G> % dynamically-created page viewed every 5 seconds? David T-G> % David T-G> % I'm trying to do it

Re: Refresh dynamic content using query_string

2002-06-07 Thread David T-G
Jason -- ...and then Jason Ostrom said... % % I was wondering if there was any way to refresh and have the same % dynamically-created page viewed every 5 seconds? % % I'm trying to do it like this: % % my $URL2 = "ds0.cgi?$ENV{QUERY_STRING}"; % ### HTML part % print $q->he

Refresh dynamic content using query_string

2002-06-07 Thread Jason Ostrom
I was wondering if there was any way to refresh and have the same dynamically-created page viewed every 5 seconds? I'm trying to do it like this: my $URL2 = "ds0.cgi?$ENV{QUERY_STRING}"; ### HTML part print $q->header( -Refresh=>'5; URL=$URL2' ), But this

Re[4]: Re-direct/Refresh question

2002-05-02 Thread Jason Ostrom
Adam, Thanks for your help. This is exactly what I was looking for. I found the answer at this URL on how to refresh by modifying the header with the object-oriented interface: http://www.esec.com.au/sep/content/eps_support/demo/perlcgi/cgi_module.html All the best, -Jason Adam Morton

Re: Re[2]: Re-direct/Refresh question

2002-05-02 Thread Adam Morton
e from some google search result: print start_html(-title => "CNN Headline News", -head => meta({-http_equiv => 'refresh', -content => $REFRESH * 60})); - Original Message - From: "Jason Ostrom" <[EM

Re: Re-direct/Refresh question

2002-05-02 Thread Adam Morton
Perhaps you just want to use $q->redirect() ? - Original Message - From: "Jason Ostrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 02, 2002 5:02 PM Subject: Re-direct/Refresh question > Is there a more efficient way to do page re-direct

Re-direct/Refresh question

2002-05-02 Thread Jason Ostrom
Is there a more efficient way to do page re-directs / refreshes with CGI.pm? I've searched all over, and can't find the answer. Like if I'm trying to re-create this HTML: Blah BlahRefresh Test I use CGI.pm with the object-oriented interface, and I can't figure

image refresh timer

2002-02-04 Thread Patrick
Im looking to set up a timer on a page for images that would have the images change on their one at predetermined intervals like every 15 seconds an new one would rotate into the table. Like for banner rotation but not having to wait till the page reload to see the new image. Can someone point me

Re: force a refresh?

2001-11-17 Thread Mo Holkar / UKG
At 08:13 17/11/01, Scott wrote: >In article <00bd01c167e5$3f6ffc80$ac8e5e83@UPAWP1>, > [EMAIL PROTECTED] (W P) wrote: > > > is there any way, possibly using a header, to force a browser to get the > > newest version of a page? > > the problem that i'm having is that my guestbook script is creatin

Re: force a refresh?

2001-11-17 Thread Scott R. Godin
In article <00bd01c167e5$3f6ffc80$ac8e5e83@UPAWP1>, [EMAIL PROTECTED] (W P) wrote: > is there any way, possibly using a header, to force a browser to get the > newest version of a page? > the problem that i'm having is that my guestbook script is creating an html > file, then redirecting the u

Re: refresh

2001-06-25 Thread Timothy Kimball
: I want to continuously refresh or update a screen with out it adding onto it's self. : Any ideas? Use the HTTP "refresh" header, either in the HTTP header: # I assume you're using CGI.pm print STDOUT header( -refresh => "1; $url_of_this_cgi_script&quo

Re: refresh

2001-06-25 Thread Mark Bergeron
How's this?! -Original Message- From: "Jerry Preston"<[EMAIL PROTECTED]> To: "cgi"<[EMAIL PROTECTED]> Date: Mon Jun 25 09:07:00 PDT 2001 Subject: refresh >Hi, > >I want to continuously refresh or update a screen with out it adding onto it

refresh

2001-06-25 Thread Jerry Preston
Hi, I want to continuously refresh or update a screen with out it adding onto it's self. Any ideas? Thanks for your help! Jerry