Hi
I have a MaskedEdit Textbox as following:
<asp:TextBox ID="TextBox4" OnTextChanged="TextBox4_TextChanged" runat="server"></asp:TextBox><ajaxToolkit:MaskedEditExtender ID="MaskedEditExtender4"
runat="server"
TargetControlID="TextBox4"Mask="99/999/9999/99999/999"
MaskType=NoneMessageValidatorTip=true
OnFocusCssClass="MaskedEditFocus"
OnInvalidCssClass="MaskedEditError" />
What I want that instead of the Mask="99/999/9999/99999/999" I want to allow the user to Enter characters also so the mask will be
99/***/9999/99999/999(asteriks is for characters),
if 9 is for numbers,what is the code for characters?
Also When the user finishes typing in the MaskedTextBox I want to query the database to see if the entered code is valid.In VB6 i used the lost_focus event for this purpose what is the alternative in ASP.NET?
thanks