0

I've got the following line of code:

<asp:MaskedEditExtender ID="meeLegID" runat="server" MaskType="None" Mask="LLLLL" 
TargetControlID="txtLegID" PromptCharacter="_"  InputDirection="LeftToRight" 
AutoComplete="False" />

The problem is, it only accepts letters. If I set the Mask="99999", it only accepts numbers. So what do you set Mask to in order for it to accept both letters and numbers?

Johnny Bones
  • 8,786
  • 7
  • 52
  • 117

1 Answers1

-1

Found the answer.

Mask = "?????"
Johnny Bones
  • 8,786
  • 7
  • 52
  • 117