Click to See Complete Forum and Search --> : Saving form results to a file (webbot problem)


tresesert
September 4th, 2002, 09:17 AM
I made a simple form. I then edited it in frontpage so that I could save the form to a file and email myself the results. With regular html, the form emails to my account. However when I edited it in frontpage, it added 'webbot code' and doesn't email me nor does it save to a csv file.

Here is what my code looks like. (It is possible that my problem may lie in the server needing frontpage extensions enabled on it, yet I don't know why I would need that to test it locally) Thanks.

<!-- html code here -->

<form name="MainForm" method="post" action="--WEBBOT-SELF--" onSubmit="return validate();" enctype="text/plain">

<!--webbot bot="SaveResults" U-File="c:\changes" S-Format="TEXT/CSV"
S-Label-Fields="FALSE" B-Reverse-Chronology="FALSE" S-Email-Format="TEXT/PRE"
S-Email-Address="myemail@mail.com" B-Email-Label-Fields="TRUE"
B-Email-Subject-From-Field="FALSE" S-Email-Subject="Change submission"
S-Builtin-Fields U-Confirmation-Url="file:///c:/confirm.htm" -->

<p><strong><center>Change Request Form</center></strong></p>

<p><strong> Name: </strong><input type="text" name="Name" size="27"></p>
<p><strong> Slide Number: </strong><input type="text" name="SlideNumber"></p>

<!-- more form info -->

</form>

<!-- more html code-->

If you know why it won't create the file nor email me the results that would be of great help. Thanks.