FP2002 changes my code !!!

G

Gitmo

When working with forms FP2002 changes my code

Original code:
<form method="POST" action="email_form.asp" name="frmEnquiry"
onSubmit="return CheckForm();">

FP2002 Code:
<form method="POST" action="email_form.asp" name="FrontPage_Form1"
onSubmit="return FrontPage_Form1_Validator(this)" language="JavaScript">

Original Java Script Code:
if (document.frmEnquiry.text1.value.length > 1000){
errorMsg += "\n\tYour Comments Field \t- At most 1000 caracters are
allowed"; }

FP2002 Code:
<!--webbot bot="Validation" i-maximum-length="1000" -->

Can anyone help me?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top