I have an ASP.NET web form, and I'm using the masked input plugin from http://digitalbush.com/projects/masked-input-plugin, which seems to be a pretty popular plugin. It works very well, but I'm having an issue when attempting to pre-populate a value in a textbox using the masking.
In my document.ready, Im performing:
$("#txtPrimaryPhone").mask("(999) 999-9999 ?x9999");
In my codebehind I set my text property like so:
txtPrimaryPhone.Text = "1234567890";
When my page loads, my textbox is empty. Has anyone run into similar issues, or can anyone offer any suggestions? Thanks!