http://qs321.pair.com?node_id=362350


in reply to Re: Can I use MS Frontpage?
in thread Can I use MS Frontpage?

So what did you do to get FP to pass the form values to Perl? BTW - I've never had FP change my code without asking - and then is was only to correct links that had moved.

Replies are listed 'Best First'.
Re^3: Can I use MS Frontpage?
by WhiteBird (Hermit) on Jun 09, 2004 at 03:04 UTC
    You call your Perl script to process the form in the form tag attribute "action". It's the same on any form. You can either code it by hand, or use the form editor to set it up.
    <form name="NameOfYourForm" method="post" action="path to your script/ +NameOfYourScript.pl">

    But after reading further in your comments I don't think that is your problem, is it? Your scripts work correctly when you upload them to your server, but you want to test them prior to uploading them, right? If I recall correctly, FrontPage won't run code unless you have a server installed on your test PC. Years ago FrontPage came with some sort of mini-personal-web-server thing that you could set up to allow scripts to be run--I don't know if that's still the case. I remember that I had to upload my code to the server to test it out. But, that was years ago and many FP versions back. I don't know what you might have available if you're using a new version of FP. If it doesn't come with a server you can configure, you might try installing and using Apache on your PC. Or, get a copy of OptiPerl. It's a shareware development tool that will let you test server-based scripts.