Amigos, necesito saber como le puedo agregar a este javascript la validación completa del campo de mail, he probado con los ejemplo de las faq pero no han funcionado.
<SCRIPT LANGUAGE="VBScript">
sub bnaceptar_onclick()
if fmAlta.ctnombre.value = "" then
msgbox "Debe ingresar un nombre.", vbOKOnly, "nombre"
exit sub
end if
if fmAlta.ctemail.value = "" then
msgbox "Debe ingresar un E-mail.", vbOKOnly, "email"
exit sub
end if
if (LEN(fmAlta.ctemail.value) < 6) then
msgbox "Dirección de E-mail incorrecta.", vbOKOnly, "email"
exit sub
end if
if fmAlta.ctpais.value = "" then
msgbox "Debe ingresar un país.", vbOKOnly, "pais"
exit sub
end if
if fmAlta.ctsugerencia.value = "" then
msgbox "Debe ingresar una sugerencia.", vbOKOnly, "sugerencia"
exit sub
end if
fmAlta.submit()
End sub
</SCRIPT>
abrazo
Ricardo