I have asp.net login control in my webapplication.while I run the application in internet explorer and type password it will displayed as question mark. Can anyone able to solve the problem means its very useful for my project. Thanx in advance...

link|improve this question

50% accept rate
I need to displayed the password as dot symbol – satya Jul 7 '11 at 13:12
This is a css issue. I remember coming across this in the past. I think it required changing the fonts to some standard fonts like Arial, Verdana, Times New Roman, MS Sans Serif, etc. – Hasan Fahim Jul 7 '11 at 13:23
If you are setting the fonts using Themes or directly. Please check if you are using standard fonts or else you'll have issue while running the app in different browsers – Hasan Fahim Jul 7 '11 at 13:24
feedback

3 Answers

up vote 1 down vote accepted

Normally this means that the font it's trying to use does not contain the character that was specified. Did you set a specific character or a non-default font? (The default symbol should be the asterisk, * - not sure about the font.)

Also, check the character set for your pages.

link|improve this answer
feedback
 <asp:TextBox ID="pwd" runat="server" TextMode="Password"></asp:TextBox>
link|improve this answer
ASP.NET login control does this for you automatically. – GalacticCowboy Jul 7 '11 at 13:18
yes.. <asp:Login runat="server"></asp:Login> will do this automatically.. if this not coming for satya, then i assumed he is using normal textbox... – Raghav Jul 7 '11 at 13:21
feedback

Change the font to something other, then you will get aquestion mark instaed. Don't remember the font name. Instaed you can also handle the key events to display a question mark when a key is typed.

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.