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

  • SEARCH
  • Home
  • 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 3602372
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:44:17+00:00 2026-05-18T20:44:17+00:00

Motive : I have a decimal property in a class which I wish to

  • 0

Motive : I have a decimal property in a class which I wish to validate so that it adheres to regex “^\d{1,7}.\d{2,7}$”

So i have applied the Regex validator attribute to the property

   [RegexValidator(@"^\d{1,7}\.\d{2,7}$"...)]
   public Decimal MyDecimalProperty { get; set; }

Then, via propertyproxyvalidator on my asp.net page i have tied a textbox validation to this property type.

<cc1:PropertyProxyValidator ID="MyValidator" runat="server" ControlToValidate="MyTextBox"
PropertyName="MyDecimalProperty" SourceTypeName="Myclass, Mydll"></cc1:PropertyProxyValidator>

At runtime i get this error when validation gets performed:

“Value to validate is not of the
expected type: expected System.String
but got System.Decimal instead.”

Any idea how to get around this issue, or an alternate to achieve my motive ?

  • 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-18T20:44:17+00:00Added an answer on May 18, 2026 at 8:44 pm

    Regular expressions are built to work on strings, not numeric types. Perhaps you need something like this instead:

    public Decimal MyDecimalProperty { get; set; }
    
    [RegexValidator(@"^\d{1,7}\.\d{2,7}$")]
    public string MyDecimalPropertyString
    {
        get
        {
            return this.MyDecimalProperty.ToString();
        }
    }
    

    Also, update the PropertyName attribute of the PropertyProxyValidator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

my question is probably identical and have same motive as this here i ain't
I have a div container inside which there are several child divs with css
I have this table structure <table id=latest class=debt> <thead> <tr> <th width=50>Credor</th> <th width=50>Devedor</th>
Greetings, I have a problem which would seem to involve some kind of z-index
I want to have something like MOTIVE { GET_PLAYER, GET_FLAG } . And in
I have an application that I am developing for the iPhone. What it does
I have an editText which is set to accept numbers only, as expected the
I have made a windows service the motive behind is to send multiple files
I am developing an application with external databases. For this motive, I have to
I have function that receives an array of pointers like so: void foo(int *ptrs[],

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.