Why WCAG made 3 level “A”, “AA” and “AAA”?

WCAG 2.0 is divided into three conformance levels (A-AA-AAA) because the success criteria are organised based on the impact they have on design or visual presentation of the pages. The higher the level, the more restraining it becomes on design. For example, let’s take guideline 1.4 (Distinguishable), which is about making it easier for users … Read more

Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applications [closed]

I don’t have any examples to point to. In truth, many of these screens may be hard to find on the web for the simple fact that most of them tend to be “ugly”. These kinds of screens are rarely pretty. I can offer some tips, from long history working with these things. Consistency. Make … Read more

How to use the tag in ASP.NET?

I use <asp:Label … AssociatedControlID=”Username” …> controls for this. They get rendered as <label> tags and set the for attribute appropriately. Note that you can also nest other tags within the Label control if you wish: <asp:Label ID=”UsernameLabel” Text=”Username:” AssociatedControlID=”UsernameTextBox” runat=”server”> <asp:TextBox ID=”UsernameTextBox” runat=”server” /> </asp:Label>