Check out preload and prerender features.
http://www.sitepoint.com/using-modern-ie-identify-common-coding-problems/
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Check out preload and prerender features.
http://www.sitepoint.com/using-modern-ie-identify-common-coding-problems/
$(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();
}
});
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
Heard about the Pomodoro technique?
It’s a technique to be more productive.
You work focused for 25 minutes, takes a 5 minute break and repeat.
Here’s a windows/mac application that helps you with the timing:
Put new wsdl file in website root ~/Services
Goto “project” -> Service References folder ->
Select the particular web service -> right click and choose
“Update service reference”
Visual Studio builds new references against this definition and
updates some files inside the service folder *.svcinfo, Reference.cs, Reference.svcmap, app.config in the project base folder.
Rebuild solution.