snowboardr
Programmer
None of these work... why not??
Code:
<%
EmailAdd = Request.Form("email_address")
If NOT InStr(EmailAdd, "@") = 1 then
'# If less or more then 1 its an invalid email
ErrEmail = True
End If
If InStr(EmailAdd, "@") <> 1 then
'# If less or more then 1 its an invalid email
ErrEmail = True
End If
%>