Click to See Complete Forum and Search --> : Do I need something on my server?


arekdaset
04-21-2006, 03:11 PM
I created a form using front page. I want this form to submit to an email after they hit the submit button. I followed everything on the tutorial and even used the Form Wizard in the program.

http://chicagoelections.com/survey.htm
is where the form resides.

I keep getting an error about some front page extension on the server. I have verified with the admin and it shows that we currently have FP server extension 2002 - the latest. Do I need some other type of script or something to make this button work? Do I need a submit function of some sort? This is driving me crazy any help would be appreciated. Someone Helpppppp!!!!!!!

here is the code:

<HTML>
<HEAD>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<TITLE>New Page 1</TITLE>
</HEAD>
<BODY><center><img src="http://chicagoelections.com/picture2.jpg"></center>
<H1><center><b><font size="5">Voter Survey</H1></center></font></b>
<HR>
<P>
<font size="4">Did you vote in the March 21, 2006 Primary Election? The Chicago Board of
Election Commissioners is interested in how you liked the new voting process.
Please take a moment to complete this survey.</font></P>
<FORM METHOD="POST" ACTION="--WEBBOT-SELF--" onSubmit="location.href='_derived/nortbots.htm';return false;" webbot-onSubmit>
<!--WEBBOT BOT=SaveResults
U-File="_private/formrslt.txt"
S-Format="TEXT/TSV" S-Label-Fields="TRUE" B-Reverse-Chronology="FALSE" S-Email-Format="HTML/BR" S-Email-Address="tleach@chicagoelections.com" B-Email-Label-Fields="TRUE" S-Date-Format="%A, %B %d, %Y" S-Time-Format="%I:%M:%S %p" S-Builtin-Fields="Date Time" U-Confirmation-Url="http://chicagoelections.com/thanks.html" startspan
--><!--webbot bot="SaveResults" endspan --><OL>
<LI>
<P>
<b>I voted on:</b></P>
<P>
<INPUT TYPE=RADIO NAME="VoteOn" VALUE="Paper ballot optical Scan" UNCHECKED>
Paper ballot optical scan
<p>
<INPUT TYPE=RADIO NAME="VoteOn" VALUE="Touch Screen">
Touch screen voting
<BR>
<BR>
</P>
<LI>
<P>
<b>The voting system was:</b></P>
<P>
<INPUT TYPE=RADIO NAME="VotingSystem" VALUE="Easy to use" UNCHECKED>
Easy to use
<BR>
<INPUT TYPE=RADIO NAME="VotingSystem" VALUE="Somewhat complicated">
Somewhat complicated
<BR>
<INPUT TYPE=RADIO NAME="VotingSystem" VALUE="Very complicated">
Very complicated
<BR>
<BR>
</P>
<LI>
<P>
<b>Compared to punch card voting, I liked the new system:</b></P>
<P>
<INPUT TYPE=RADIO NAME="Compare" VALUE="Better" UNCHECKED>
Better
<BR>
<INPUT TYPE=RADIO NAME="Compare" VALUE="Same">
Same
<BR>
<INPUT TYPE=RADIO NAME="Compare" VALUE="Didn't like">
Didn't like
<BR>
<b>
<BR>
</b>
</P>
<LI>
<P>
The voting time on the new system was:</P>
<P>
<INPUT TYPE=RADIO NAME="VotingTime" VALUE="Faster" UNCHECKED>
Faster
<BR>
<INPUT TYPE=RADIO NAME="VotingTime" VALUE="Same">
Same
<BR>
<INPUT TYPE=RADIO NAME="VotingTime" VALUE="Slower">
Slower
<BR>
<BR>
</P>
<LI>
<P>
<b>Comments or Suggestions.....</b></P>
<P>
<TEXTAREA NAME="Comments" ROWS=5 COLS=35></TEXTAREA>
<BR>
</P>
</OL>
<INPUT TYPE=SUBMIT VALUE="Submit Form">
<INPUT TYPE=RESET VALUE="Reset Form">
</FORM>
<HR>
<H5>
Chicago Board of Election Commissioners<br>Copyright © 2006 [CBOE].
All rights reserved. <BR>
Revised:
<!--WEBBOT BOT=TimeStamp
S-Type="EDITED"
S-Format="%m/%d/%y"
--></H5>
</BODY>
</HTML>

TiGGi
04-24-2006, 09:49 AM
as u may noticed in your form action there is "_derived/nortbots.htm"
this is the page that you send your data to which doesn't exitst. So what you need to do is create a page where you catch your data, and the easiest way to do this is using serverside such as coldfusion, asp, php, .net.... So do you have any of there available to you@!

arekdaset
04-24-2006, 02:23 PM
I go ahead and started a new srvey which I created on the server. After I finish creating this page that _derived/norbots come in on its own. I do not know where the hell that came from. it just pops up automatically. I can remove it and when I put the page in the directory for the site it gets recreated all over again. I about to give up on this crappy server. When I create it on my desktop it put in a path for my computer. I think this program sucks..this front page

TiGGi
04-24-2006, 04:10 PM
you need to change action of your script so where it says:
<FORM METHOD="POST" ACTION="--WEBBOT-SELF--" onSubmit="location.href='_derived/nortbots.htm';return false;" webbot-onSubmit>
just do like this:
<FORM METHOD="POST" ACTION="page.cfm" >
now you need create a page where you going to catch your data, (page.cfm) using serverside of your choice (coldfusion, asp, php..)

arekdaset
04-25-2006, 10:38 AM
Thanks for the info