vote up 1 vote down star

Is there a way to get an ASP.NET textbox to accept only currency values, and when the control is validated, insert a $ sign beforehand?

Examples:

10.23 becomes $10.23
$1.45 stays $1.45
10.a raises error due to not being a valid number

I have a RegularExpressionValidator that is verifying the number is valid, but I don't know how to force the $ sign into the text. I suspect JavaScript might work, but was wondering if there was another way to do this.

flag

62% accept rate
I ended up figuring out some JavaScript to do what I wanted. Needed to simplify a deployment package and the AJAX toolkit was just another dependency. – Jason Z Oct 14 '08 at 19:41

4 Answers

vote up 7 vote down check

The ASP.NET MaskedEdit control from the AJAX Control Toolkit can accomplish what you're asking for.

link|flag
vote up 0 vote down

string sValue = Convert.ToString(txtboxValue.Text.Trim());

// Put Code to check whether the $ sign already exist or not.

//Try making a function returning boolean

//if Dollar sign not available do this

{ string LableText = string.Format("{0:c}", "sValue"); }

else

{ string LableText = Convert.ToString(sValue); }

link|flag
vote up 0 vote down

In the .CS you could do a pattern match along the lines of,

        string value = text_box_to_validate.Text;

        string myPattern = @"^\$(\d{1,3},?(\d{3},?)*\d{3}(\.\d{0,2})|\d{1,3}(\.\d{2})|\.\d{2})$";
        Regex r = new Regex(myPattern);
        Match m = r.Match(value);

        if (m.Success)
        {
            //do something -- everything passed
        }
        else
        {
            //did not match
            //could check if number is good, but is just missing $ in front
        }
link|flag
Already running that regex. I want the $ sign to be inserted into the textbox value after the value is entered, preferably without a postback. – Jason Z Oct 14 '08 at 18:21
vote up 1 vote down

Another way to do this might be to place the dollar sign outside to the left of the text box. Is there a real need to have the dollar sign inside of the box or will a simple label do?

link|flag
There is no real need for it, I am unfortnately tied to the sales and marketing requirements. I tried arguing against it, but was overruled. – Jason Z Oct 14 '08 at 17:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.