Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public static bool checkForValidEmailAddr(string strEmail)
{
if (strEmail == null)
{
return false;
}
int indFirst = strEmail.IndexOf('@');
int indLast = strEmail.LastIndexOf('@');
if ( (indFirst > 0) && (indLast == indFirst) && (indFirst < (strEmail.Length - 1)) )
{
return (Regex.IsMatch(strEmail, @"(\w+)@(\w+)\.(\w+)"));
}
else
{
return false;
}
}