简体   繁体   中英

asp.net login control with internet explorer

I have an ASP.net login control in my web application. While I run the application in Internet Explorer and type the password it is displayed as question marks.

Is anyone able to solve this problem? It would be very useful for my project.

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.

 <asp:TextBox ID="pwd" runat="server" TextMode="Password"></asp:TextBox>

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM