Archives

All posts by Pavlović Branislav

This function check is value a valid email address:

public static bool IsEmailAddress(string email)
{   
   if(!email.Contains("@")) return false;
   string pattern = @"^(([^<>()[\]\\.,;:\s@\""]+"
                            + @"(\.[^<>()[\]\\.,;:\s@\""]+)*)|(\"".+\""))@"
                            + @"((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"
                            + @"\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+"
                            + @"[a-zA-Z]{2,}))$";
   
   Regex emailregex = new Regex(pattern);
   return emailregex.IsMatch(email);
}

As a member of experienced developers,participated in the implementation of TeleTrader portal. Using latest ASP.NET MVC technology, we created new platform  for developing financial markets based portals. Our first big task was to create new portal for our company. As result, we developed an unique and sophisticated portal.

Please visit Teletrader site.