Re: Perl CGI using JavaScript

2000-05-26 Thread Tim Dumas
[EMAIL PROTECTED]">   I am writing a Perl CGI script which generates an HTML file that uses javascript javascript.  I need to   enable Perl to use some of the variables created in the javascript code.  If anyone knows how to make   this happen, or can point me toward someone w

Re: Perl CGI using JavaScript

2000-05-26 Thread Ranga
Let Javascript submit the form using submit() function. In that you can include any CGI parameters like http:///cgi- bin/myprog?fld1=value&fld2=value and so on. You can also just set location.href = URL (including CGI string) First create some dummy HTML stuff with javascript and try it ou