Does anyone know how to accomplish partial number masking. For example, I am trying to mask the display of a SSN and Credit Card but still allowing the user to re-input the whole number.
I have a
I would like to have a mask when the user views it to be like "***-**-####" but still allow them to put in all 9 numbers. Is this possible? It would be the same problem with displaying credit card numbers. I need to be able to only show the last X number of digits but allow for entry of the whole number.
I believe I saw an example of the ASP.Net MaskedTextBox with it using a DisplayMask. I know it may not be supported with the control itself, but is there a way to do it using a Converter? I have tried but have not succeeded yet.
Any help is greatly appreciated.
Jason