Tag Archives: RegularExpressions

CSharp Validate Email Address Function With Regular Expression Posted by in CSharp | Leave a comment

This is just a C# function that validate an email address to see whether it is a valid email format. The function uses Regular Expression to validate input email and an example in an ASP.net page will also be provided. Continue reading

C# Check Google PageRank – ASP.NET Example Posted by in CSharp | Leave a comment

Google PageRank is an important factor in order to determine a particular website URL is popular or not. As I can’t check website PageRank with Google Toolbar any more so I have to find another way to get it. By … Continue reading

CSharp Validate Internet URL Function With Regular Expression Posted by in CSharp | Leave a comment

This is just a C# function that validate an internet URL to see whether it is a valid URL format. The function uses Regular Expression to validate input URL and an example in an ASP.net page will also be provided. Continue reading

Auto Convert Text To URL Link And MailTo Email Address With ASP.NET C# Posted by in CSharp | 3 Comments

The ASP.NET C# code below will automatically detect if your string content contains url[s] or email address[es] then wrap them into hyperlink[s] or mailto email address[es] respectively. Continue reading