vote up 0 vote down star
1

I have a bound textbox that i want to validate with a mask editor. It works great when the textbox is not bound but displays (_99)999-9999 when it is bound.

<asp:TextBox ID="ecPhna" NumericRangeAlign="Left" runat="server" Text = '<%# Eval("PhoneNumber") %>' ></asp:TextBox>
                                                <ajaxToolkit:MaskedEditExtender ID="eMaskedEditExtender2" TargetControlID = "ecPhna" ClearMaskOnLostFocus="false" runat="server" Mask="(999)999-9999"></ajaxToolkit:MaskedEditExtender>

How can I fix this issue?

flag

61% accept rate

1 Answer

vote up 0 vote down

What is one of the string values actually bound to the control at runtime? Is one of the values "_999999999"? Maybe you're seeing it correctly.

Or possibly are you binding the Mask attribute too? Maybe the Mask is being given a new value from the data source instead of the intended Value attribute (or whatever attribute the phone # is supposed to be bound to). This second thought is not seen in your declarative syntax but binding can also be manipulated programmatically from the code-behind which you did not show. Just some guesses.

link|flag
in the database the phone number is broken up into three different fields. In my select statement i put them together using '+' – Eric Oct 23 at 21:24

Your Answer

Get an OpenID
or

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