WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for ‘jquery’. Please add a ScriptResourceMapping named jquery(case-sensitive)

You need a web.config key to enable the pre 4.5 validation mode. More Info on ValidationSettings:UnobtrusiveValidationMode: Specifies how ASP.NET globally enables the built-in validator controls to use unobtrusive JavaScript for client-side validation logic. Type: UnobtrusiveValidationMode Default value: None Remarks: If this key value is set to “None” [default], the ASP.NET application will use the pre-4.5 behavior (JavaScript inline in the … Read more

What is href=”#” and why is it used?

About hyperlinks: The main use of anchor tags – <a></a> – is as hyperlinks. That basically means that they take you somewhere. Hyperlinks require the href property, because it specifies a location. Hash: A hash – # within a hyperlink specifies an html element id to which the window should be scrolled. href=”#some-id” would scroll to an element on the current page such … Read more

How (and why) to use display: table-cell (CSS)

After days trying to find the answer, I finally found display: table; There was surprisingly very little information available online about how to actually getting it to work, even here, so on to the “How”: To use this fantastic piece of code, you need to think back to when tables were the only real way to … Read more

Add Favicon to Website [duplicate]

Simply put a file named favicon.ico in the webroot. If you want to know more, please start reading: Favicon on Wikipedia Favicon Generator How to add a Favicon by W3C (from 2005 though)