Click here to Skip to main content
15,896,401 members
Articles / Web Development / ASP.NET

MVC Basic Site: Step 1 – Multilingual Site Skeleton

Rate me:
Please Sign up or sign in to vote.
4.90/5 (98 votes)
25 Oct 2013Ms-PL15 min read 409.7K   16.2K   319  
This article is intended to be the first one from this series and is focused mainly in the creation of a multilingual MVC web site skeleton.
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;

namespace MvcBasic.Logic
{
    /// <summary>
    /// Defines the email validation attribute.
    /// </summary>
    public class EmailAttribute : RegularExpressionAttribute, IClientValidatable
    {
        /// <summary>
        /// Initializes a new instance of the EmailAttribute class.
        /// </summary>
        public EmailAttribute()
            : base(@"^([a-zA-Z0-9_äöüÄÖÜßăîâșțĂÎÂȘȚ\-\.]+)@((\[[0-9]{1,3}" +
                   @"\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9äöüÄÖÜßăîâșțĂÎÂȘȚ\-]+\" +
                   @".)+))([a-zA-ZäöüÄÖÜßăîâșțĂÎÂȘȚ]{2,4}|[0-9]{1,3})(\]?)$")
        {
        }

        /// <summary>
        /// Get the client validation rules.
        /// </summary>
        /// <param name="metadata">The model metadata.</param>
        /// <param name="context">The controller context.</param>
        /// <returns>The client validation rules for this validator.</returns>
        public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
        {
            string errorMessage = FormatErrorMessage(metadata.GetDisplayName());
            yield return new EmailValidationRule(errorMessage);
        }
    }

    /// <summary>
    /// Defines the email validation rule.
    /// </summary>
    public class EmailValidationRule : ModelClientValidationRule
    {
        /// <summary>
        /// Initializes a new instance of the EmailValidationRule class.
        /// </summary>
        /// <param name="errorMessage">The error message.</param>
        public EmailValidationRule(string errorMessage)
        {
            this.ErrorMessage = errorMessage;
            this.ValidationType = "email";
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Romania Romania
I have about 20 years experiences in leading software projects and teams and about 25 years of working experience in software development (SW Developer, SW Lead, SW Architect, SW PM, SW Manager/Group Leader).

Comments and Discussions