in reply to Re: Re: (nrd) Executing Perl Script from a Web Page
in thread Executing Perl Script from a Web Page
Correction to my previous post to John
You can launch a Perl script from javascript
example:
<SCRIPT LANGUAGE="JavaScript"> function showProgress() { var newWindow = open("http://localhost/cgi-bin/test.pl", "secondWindow +", "scrollbars,resizable,width=250,height=150,left=720"); } </script>
The form element would contain the following javascript event handler:
onSubmit="showProgress()
Eoin
|
|---|