Categories
C#.NET Google Microsoft VB.NET Visual Studio W3C Windows 7 Windows 8 / 8.1 Windows Server 2008 Windows Server 2012 Windows Vista Windows XP

W3C validator – “there is no attribute “AutoComplete””

When you try to validate your page with W3C Markup Validation Service at the line when you have a TextBox with AutoComplete attribute like this:

<asp:TextBox ID="myTextBox" runat="server" AutoComplete="Off" />

show the following error message:

there is no attribute “AutoComplete”

Solution:
Change
AutoComplete=”Off”
to
AutoCompleteType=”None”

<asp:TextBox ID="myTextBox" runat="server" AutoCompleteType="None" />

Did my solution solve your problem? Leave a reply.

Categories
HOW TO Microsoft Windows 7 Windows 8 / 8.1 Windows Server 2008 Windows Server 2012 Windows Vista Windows XP

HOW TO display the Menu Bar in Mozilla Firefox

Since Mozilla Firefox 15 the menu bar is hidden by default, to display it you can press Alt.

If you’d like it to be always displayed follow these simple steps:

  1. Launch Mozilla Firefox
  2. right-click near the last tab
    Mozilla Firefox right-click near last tab

  3. check Menu Bar
    Mozilla Firefox Menu Bar

With the same steps you can display/hide different bars/toolbars: Navigation Toolbar, Bookmarks Toolbar, Add-on Bar
or
Customize… it.

Did my HOW TO help you? Leave a reply.