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,