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?
