Lato client... grazie non sapevo

allora avrei ancora bisogno di aiuto...

la pagina (per la richiesta informazioni) è impostata in questo modo:

nome, cognome, mail,... obbligatori
poi
captcha
-----
<table width="100%" border="0" align="center">
<tr>
<td width="340">CAPTCHA Image</td>
<td width="210">[img]captcha.asp[/img]

Change Image</td>
</tr>
<tr>
<td>Write the characters in the image above</td>
<td><input name="captchacode" type="text" id="captchacode" size="10" /></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="btnTest" id="btnTest" value="Test Input" /></td>
</tr>
<%
if not IsEmpty(Request.Form("btnTest")) then
Response.Write("<tr><td colspan=""2"" align=""center"">")
if TestCaptcha("ASPCAPTCHA", Request.Form("captchacode")) then
Response.Write("<b style=""color:#00CC33"">The code you enter verified.[/b]")
else
Response.Write("<b style=""color:#FF0000"">You entered the wrong code.[/b]")
end if
Response.Write("</td></tr>" & vbCrLf)
end if
%>
</table>
----
poi
pulsante invia form

ora il captcha mi dice se il codice è esatto
ma come faccio ad integrare tutto in un invio unico?
grazie mille