I have an entry form that I just updated to have some combo box filtering. It forced me to change the form header from this :
<FORM METHOD="post" ACTION="CE_EntryForm_Proce
ss.asp" name="CE_EntryInfo" ENCTYPE="application/x-www
-form-urle
ncoded">
To this:
<FORM METHOD="post" onSubmit="return submitForm()" name="CE_EntryInfo" ENCTYPE="application/x-www
-form-urle
ncoded">
This also caused me to change my submit button from:
<INPUT TYPE=submit VALUE="Submit" style="font-family: Trebuchet MS" tabindex="30"></span>
To this:
<input id="btnSubmit" type="button" value="Submit2" onclick="redirectToProcces
sPage()"/>
<br />
My problem that my validation from cannot pick up the values fromt he form anymore. I was using this to get the values:
username = Request.form("username")
Is their a simple way to fix this?
Start Free Trial