Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6740871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:39:29+00:00 2026-05-26T11:39:29+00:00

How I can create custom attribute in Data Annotation?I want to set Control name

  • 0

How I can create custom attribute in Data Annotation?I want to set Control name assosiated with a property ad I don’t find any suitable attribute.

How I can do this?

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T11:39:30+00:00Added an answer on May 26, 2026 at 11:39 am

    You must extend System.ComponentModel.DataAnnotations.ValidationAttribute

    K. Scott Allen (of OdeToCode) has a great example where he builds a custom “GreaterThan” attribute.

    http://odetocode.com/blogs/scott/archive/2011/02/21/custom-data-annotation-validator-part-i-server-code.aspx

    Here is the snippet included inline though:

    public class GreaterThanAttribute : ValidationAttribute
    {
        public GreaterThanAttribute(string otherProperty)
            :base("{0} must be greater than {1}")
        {
            OtherProperty = otherProperty;
        }
    
        public string OtherProperty { get; set; }
    
        public override string FormatErrorMessage(string name)
        {            
            return string.Format(ErrorMessageString, name, OtherProperty);
        }
    
        protected override ValidationResult 
            IsValid(object firstValue, ValidationContext validationContext)
        {
            var firstComparable = firstValue as IComparable;
            var secondComparable = GetSecondComparable(validationContext);
    
            if (firstComparable != null && secondComparable != null)
            {
                if (firstComparable.CompareTo(secondComparable) < 1)
                {
                    return new ValidationResult(
                        FormatErrorMessage(validationContext.DisplayName));
                }
            }               
    
            return ValidationResult.Success;
        }        
    
        protected IComparable GetSecondComparable(
            ValidationContext validationContext)
        {
            var propertyInfo = validationContext
                                  .ObjectType
                                  .GetProperty(OtherProperty);
            if (propertyInfo != null)
            {
                var secondValue = propertyInfo.GetValue(
                    validationContext.ObjectInstance, null);
                return secondValue as IComparable;
            }
            return null;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a custom attribute that can be used on a property
I want to create a custom Data annotation Validator to check whether all the
I am learning PyQt and wonder if one can create custom/owner draw control like
I want to know if i can create a custom google maps application,on which
How can I create a custom property for my .Net assembly which would then
I need to create a custom constraint annotation which can access the value of
I know how to create a custom user control in WPF but how can
I'd like to create a custom attribute to apply to any method within a
I've created a custom UITypeEditor. Can I possibly insert an attribute that also attaches
I have a web app where people can create custom content on the web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.