[Perl-unix-users] cgi-perl: embedding javascript in perl (mistake in first mail)

2006-08-14 Thread Dhivya Arasappan/O/VCU
I'm sorry. I was trying to simplify the code to mail to the mailing list and made a silly mistake in the argument names. This is not the problem in the actual code. So,the problematic code actually looks more like:   $testvar = 'www.google.com'; print(">");   function popwindow(url){    

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

[Perl-unix-users] CGI Help Needed

2004-11-24 Thread Avadhani, Subramanya
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 team mails etc). Now on the click of lin

[Perl-unix-users] CGI module makes trouble.

2004-09-14 Thread Siyad Ahmed Naina
Hi, list. I wrote a script to query Wordnet Db for words. This script works well in console mode. But if i use CGi module the methode in Lookup_synset() it doesn't return synset objects. Anyone has any idea what may be the reason. thnx siyad _

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:

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
ers-b e.com [EMAIL PROTECTED] cc ctiveState.com[EMAIL PROTECTED] Subject

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

[Perl-unix-users] CGI

2004-08-02 Thread mario sanchez
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 whatever else i needed. i ca

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'

[Perl-unix-users] CGI

2003-06-19 Thread 谢 根本
use CGI qw(:standard); $co = new CGI; print header,start_html ("resource input"),h1("Recource Invoking Auto-Record Form"); print hr(); print start_form(-method=>'POST', -action=>recource.cgi); #print p("Name",textfield("name")); print p("Name",popup_menu("name",['xietao1','liuying1','linxb'])); #

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

[Perl-unix-users] CGI and client side

2003-01-06 Thread Mundell, R. \(Ronald\)
Title: CGI and client side Good Day All 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

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.

[Perl-unix-users] CGI redirection

2003-01-02 Thread Mundell, R. \(Ronald\)
Title: CGI redirection Good Day All 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. Ronald