0

A simple piece of code. I notice that when I hover over a '*', the tooltip doesn't show.

Are Tooltips working in Internet Explorer 10?

Code:

<p>Username:<asp:TextBox ID="UsernameTextBox" runat="server"></asp:TextBox></p>
<asp:RequiredFieldValidator ID="UsernameRequiredFieldValidator" runat="server"
     ErrorMessage="Your Username is Required" ControlToValidate="UsernameTextBox" 
     Text="*">
</asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="UsernameRegularExpressionValidator" runat="server" 
     ErrorMessage="Please only use letters and numbers with no spaces." 
     ControlToValidate="UsernameTextBox" Text="*" 
     ToolTip="Please only use letters and numbers with no spaces." 
     ValidationExpression="\w{6,14}">
 </asp:RegularExpressionValidator>

Regards,

शेखर
  • 17,412
  • 13
  • 61
  • 117

1 Answers1

0

I have worked with your code .It's working fine for both IE10 and chrome browser. May be you messed up with RegularExpressionValidator Error message and RequiredFieldValidator Error message

Vignesh Kumar A
  • 27,863
  • 13
  • 63
  • 115