Hi,.

I have a textbox inside InsertItemtemplate of a FormView.

I have this maskextender:

<cc1:MaskedEditExtender ID="meeDelayTime" runat="server" Mask="99.99"
TargetControlID="txtDelayTime">

The problem is:

If the user puts : 01.25 for example. When the textbox loses focus, the value 01.25 changes to 0125 removing the dot. That s a problem for me.

How do I make the mask to keep the dot like: 01.25

2/ Another question pls:

How do I make sure the value stays: 1.25 without obliging the user to enter: 01.25

In other term, I want the first and 4th character in my mask: 99.99 to be optional and not mandatory. The user will have the choice to enter either: 01.25 or 1.25 if he wishes.

Thanks a lot guys