I'm using ASP.NET MVC3 and trying to validate an URL field using DataAnnotationsExtensions.
It's almost what I need. However, it forces the user to add "http://" at the beggining of the URL string, if not, it will show the following validation message:
The URL field is not a valid fully-qualified http, https, or ftp URL.
In the Data Annotations Extensions URL demo page it shows an additional validator UrlWithoutProtocolRequired, but I cannot find it anywhere.
How can I use this validator, or how can I easily validate the URL without the "http://" part?