I'm using this mask:

<ajaxToolkit:MaskedEditExtender Mask="99%" MaskType="Number" ClearMaskOnLostFocus="true"
        ClearTextOnInvalid="true" AcceptNegative="Left" ID="percent" runat="server"
        TargetControlID="txtDiscountPercentage">

the proplem when load object the text box have this mask give wrong no.

the value in database is decimal 5.00 and the value showed in the textbox is 50%

Regards,

link|improve this question

76% accept rate
feedback

1 Answer

mask like this

<ajaxToolkit:MaskedEditExtender Mask="99.99#%" MaskType="Number" ClearMaskOnLostFocus="true"
            ClearTextOnInvalid="true" AcceptNegative="Left" ID="percent" runat="server"
            TargetControlID="txtDiscountPercentage">

http://danthar.tweakblogs.net/blog/2693/asp-punt-net-masked-edit-extender-displaying-percentage.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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