I would like to require valid email addresses in my form, making sure that there is the @ symbol somewhere in the field. Does anyone know the code to do this? Is it ASP or HTML?
[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
Dim EmailAtCheck
Dim strEmail : strEmail = Request.QueryString("Email")
If InStr(strEmail, "@") Then
EmailAtCheck = "TRUE"
else
EmailAtCheck = "FALSE"
end if
[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.