RE: CGI form Caching problem

2005-05-03 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : : If you're using IE for development, ditch it. : : I would never even thonk about using IE to develop with. I do use it : for further testing, but thats about all. I am using Firefox (PC) : mainly, although The problem still exists on IE (PC

Re: CGI form Caching problem

2005-05-03 Thread tom . kirkpatrick
> use strict; > use warnings; Yes, I have these on as always. > Apache won't cache the result of a script directory AFAIK. So that means it MUST be a browser caching problem right? > If you're using IE for development, ditch it. I would never even thonk about using IE to develop with. I do use

Re: CGI form Caching problem

2005-05-03 Thread Wiggins d'Anconia
[EMAIL PROTECTED] wrote: [snip] > > I have tried sending all sorts of headers to the browser to stop it > caching the page but nothing has made a difference. So perhaps the problem > is not in the browser, but in apache somewhere?? > > anyone ever had this (or a similar) problem!! > Are

Re: CGI form Caching problem

2005-05-03 Thread Brad Lhotsky
use strict; use warnings; Those two will save you a lot of nightmares with inconsistencies from a development standpoint. Apache won't cache the result of a script directory AFAIK. If you're using IE for development, ditch it. Use a browser with a web development extension like mozilla or opera

RE: CGI form Caching problem

2005-05-03 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : I thought this must be to do with browser caching... As, on : submission, the browser seems to send the form back to the : server with the old values in it. But surely, even If the : browser has cached the page, when I alter the value in one o

Re: cgi form generates a cronjob

2005-03-25 Thread Bob Showalter
FRANK DELATORRE wrote: Hello, I hope this is the right forum to ask this question: Is it possible to generate a crontab file from a perl driven CGI script? If so, what are the key steps? I've been thinking about how to develop this but for some reason I cannot rectify, in my head, how to edit a cro

Re: cgi form generates a cronjob

2005-03-25 Thread Nestor Florez
Frank, You could do a "sudo www" command and using "sed" you culd edit Now I have never done anything like this but I can see how I would approach it to edit the cronjob. God Luck!!! -Original Message- From: FRANK DELATORRE <[EMAIL PROTECTED]> Sent: Mar 25, 2005 9:48 AM To: beginners-c

Re: CGI Form Submit Buttons

2002-02-06 Thread Brett W. McCoy
On Wed, 6 Feb 2002, Andre` Niel Cameron wrote: > But what about cases of having two image buttons? Does the one that is > clicked default as submit or does this require java script? You give them differnet names and have your script do different things based on the name that was clicked. -- Br

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
ssage- From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:39 PM To: Troy May; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: CGI Form Submit Buttons But what about cases of having two image buttons? Does the one that is clicked default as submit or do

Re: CGI Form Submit Buttons

2002-02-06 Thread Andre` Niel Cameron
://supportmanual.com/ - Original Message - From: "Troy May" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 06, 2002 9:45 PM Subject: RE: CGI Form Submit Buttons > type="image" defaults to submit within a form.

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
type="image" defaults to submit within a form. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:34 PM To: [EMAIL PROTECTED] Subject: RE: CGI Form Submit Buttons Doesn't this button need a javascript oncl

RE: CGI Form Submit Buttons

2002-02-06 Thread perl.org
Doesn't this button need a javascript onclick that does a form.submit? Or should the type be submit? -Original Message- From: Troy May [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:15 PM To: Patrick; [EMAIL PROTECTED] Subject: RE: CGI Form Submit Buttons Then

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
ithin a form. -Original Message- From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:17 PM To: Troy May; Patrick; [EMAIL PROTECTED] Subject: Re: CGI Form Submit Buttons > > I personaly have had trouble with this. what exactly tells it that it

Re: CGI Form Submit Buttons

2002-02-06 Thread Andre` Niel Cameron
> > I personaly have had trouble with this. what exactly tells it that it is the submit button and not just a button? Andre -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
Then just make a submit.gif for what you want to use as the submit image. -Original Message- From: Patrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 5:47 PM To: [EMAIL PROTECTED] Subject: CGI Form Submit Buttons Is there any way to change the way a submit button

Re: cgi & form again

2001-12-11 Thread zentara
On Tue, 11 Dec 2001 15:17:01 +0800, [EMAIL PROTECTED] (Tat Nam) wrote: >Hi, > The following scripts processes the form and write somthings out and then >allow the user to input his/her e-mail address. After input of the e-mail >address, the script write it into a flat file. However, the scrip

Re: cgi & form again

2001-12-10 Thread Tat Nam
) ) { print OUTF "$value\n"; print "Thank you for your enquiries, you'll be contacted shortly\n"; } } close(OUTF); } - Original Message - From: "Mark Bergeron" <[EMAIL PROTECTED]> To: "Tat Nam" <[EMAIL

Re: cgi & form

2001-12-10 Thread Mark Bergeron
How are you calling the form. You might try and including a little of your code so we can see what's going on. -Original Message- From: "Tat Nam"<[EMAIL PROTECTED]> To: "Beginners Perl"<[EMAIL PROTECTED]> Date: Sun Dec 09 23:01:10 PST 2001 Subject: cgi & form >Hi, > I'm writing a surv