Might ease your web debugging:
Swift – Apple Developer
Using modern.IE to Identify Common Coding Problems
Check out preload and prerender features.
http://www.sitepoint.com/using-modern-ie-identify-common-coding-problems/
Attribute Routing in Web API 2 : The Official Microsoft ASP.NET Site
JSON and Microsoft technologies – CodeProject
Use jQuery to hide a DIV when the user clicks outside of it
$(document).mouseup(function (e)
{
var container = $("YOUR CONTAINER SELECTOR");
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide();
}
});
ASP.NET Forms – Get simple reference to masterpage properties
Put this directive in the top of your aspx file:
<%@ MasterType VirtualPath=”~/Templates/MasterPages/Default.Master” %>
The aspx-file gets reference to the masterpages properties in code-behind trough Master.PropertyName e.g:
this.Master.Heading