Re: [Perl-unix-users] CGI Help Needed

2004-11-24 Thread $Bill Luebkert
Avadhani, Subramanya wrote: > Hi Bill, > The problem is, I don't have ownership of the entire part of the > code and the HTML is dynamically created. In that case, I will have to > re-write the entire thing once again(which is used for creating the > display HTML).It would just be a copy and

RE: [Perl-unix-users] CGI Help Needed

2004-11-24 Thread Avadhani, Subramanya
huge. Is there a better way..? -Subbu -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 3:47 PM To: Avadhani, Subramanya Cc: Perl-Unix-Users (Perl-Unix-Users) Subject: Re: [Perl-unix-users] CGI Help Needed Avadhani, Subramanya wrote:

Re: [Perl-unix-users] CGI Help Needed

2004-11-24 Thread $Bill Luebkert
Avadhani, Subramanya wrote: > Hi Folks, > I am a newbee for CGI scripting. I am working on an Email > management application. Here on a link click, I am supposed to update an > array of Checkboxes. The checkboxes are basically indicating Email > Directives (like receive all mails,receive tea

RE: [Perl-unix-users] CGI

2004-08-03 Thread Ron Goral
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > mario sanchez > Sent: Monday, August 02, 2004 1:07 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: [Perl-unix-users] CGI > > > i would like to call http://www.whatever.com/xyz.html where AUT

Re: [Perl-unix-users] CGI

2004-08-02 Thread Byrd Harrison
mario sanchez wrote: > i would like to call http://www.whatever.com/xyz.html where >AUTOMATICALLY xyz.html runs a perl script. > i have asked this question in the past and the best answer afforded was to > call xyz.cgi where the script first reads and "displays" xyz.html then > goes off and does w

Re: [Perl-unix-users] CGI

2004-08-02 Thread rgoulding
Add the onload command to the body tag of the HTML and spawn a new window (javascript) with the target Perl script. Example: http://target.pl');"> Regards, Ross mario sanchez

Re: [Perl-unix-users] CGI

2004-08-02 Thread $Bill Luebkert
mario sanchez wrote: > i would like to call http://www.whatever.com/xyz.html where AUTOMATICALLY > xyz.html runs a perl script. > > i have asked this question in the past and the best answer afforded was to > call xyz.cgi where the script first reads and "displays" xyz.html then > goes off and

Re: [Perl-unix-users] CGI

2003-06-19 Thread Jon Earle
There were a few issues. 1. INFO. If you are using the standard method of CGI.pm, then you don't need the call to 'new CGI'. Get rid of that statement in your first script. Not a showstopper - just an unneccessary call. 2. ERROR. Enclose your form's action value in quotes. 3. ERROR. Perhaps it'

Re: [Perl-unix-users] CGI and client side

2003-01-07 Thread Jenda Krynicky
From: "Mundell, R. \(Ronald\)" <[EMAIL PROTECTED]> > I know that when one write an app under perl it runs on the web > server. is it not possible to write a app in perl to run on both the > server and the client > > Ronald Well ... if you can force all users to use the MS Internet Explorer and m

Re: [Perl-unix-users] CGI redirection

2003-01-03 Thread Szabo Zoltan
On Thu, 2 Jan 2003, Jo Geraerts wrote: > On Tue, Dec 31, 2002 at 10:45:03AM +0200, Mundell, R. (Ronald) wrote: > > Does any one knows how to redirect one CGI page to another? I am writing a > > webpage to do login. on success it needs to reload a different page in its > > place otherwise it must

RE: [Perl-unix-users] CGI redirection

2003-01-03 Thread Mundell, R. \(Ronald\)
Title: RE: [Perl-unix-users] CGI redirection To all those people that helped me with this problem thank you. -Original Message- From: Jo Geraerts [mailto:[EMAIL PROTECTED]] Sent: 02 January 2003 02:35 To: [EMAIL PROTECTED] Subject: Re: [Perl-unix-users] CGI redirection On Tue

Re: [Perl-unix-users] CGI redirection

2003-01-02 Thread Jo Geraerts
On Tue, Dec 31, 2002 at 10:45:03AM +0200, Mundell, R. (Ronald) wrote: > Does any one knows how to redirect one CGI page to another? I am writing a > webpage to do login. on success it needs to reload a different page in its > place otherwise it must reload itself. If anyone can help me, please do.