I want to mask a textbox in our application. But we can't use Textmod=Password because if we used Textmode=Password
we can't retrieve the data in edit mode and we can't return the data to textbox affter saving. Here I want to make a textbox content as dots while typing and want to retrieve typed content as dots in that textbox.
I just tried this code
-webkit-text-security: disc;-moz-text-security: disc;text-security: disc;
This code worked in Chrome but it doesn't work in either IE or Firefox.
How can i achieve the same results in IE and Firefox this?