I am using the MaskedEditExtender control for a textbox field that contains Date of Birth. I want the mask to show "mm/dd/yyyy" when the user clicks on the textbox when it is empty. Right now it only shows "__/_/__"

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I believe you can set the PromptCharacter to something else, but I don't think you can specify multiple prompt characters in one textbox. Because of this I would say your options are limited to:

  • Javascript schenanigans where you replace the "_" with m,d or y depending on where it is in the text box.
  • Multiple textboxes
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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