in reply to Error in IIS server for Perl script
<FORM ACTION=\cgi-bin\process.pl METHOD=POST>
URLs, even relative ones, do not use backslashes as path separators. Use slashes instead. Also, attributes in HTML should have their values quoted.
<FORM ACTION="/cgi-bin/process.pl" METHOD="POST">PS. Given the way it currently looks I strongly recommend that you run your HTML through a validator such as HTML::Valid.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Error in IIS server for Perl script
by choroba (Cardinal) on Jul 11, 2019 at 16:39 UTC | |
by hippo (Archbishop) on Jul 11, 2019 at 16:50 UTC |