Using ASP.NET 5 and EF7 with Modern Web Dev Tools like AngularJS and Grunt.
Author: Andreas Plahn
Using jQuery to prevent Internet Explorer from accidentally submitting form on enter key
$(function () { //page is ready //Prevents users from accidentally submitting form with enter key (e.g. IE problem) //http://stackoverflow.com/questions/895171/prevent-users-from-submitting-form-by-hitting-enter $(document).on("keyup keypress", "form input[type='text']", function (e) { if (e.keyCode === 13 /*enterkey*/ || event.keyCode === 169 /*enter on numpad*/) { e.preventDefault(); return false; } }); });
Works in ajax templated context as well.
Windows Tip: Easily show your Computer Name in the Taskbar – Scott Hanselman
If you ever wonder which machine you are remoting to, simple way to show the computer name.
Windows Tip: Easily show your Computer Name in the Taskbar – Scott Hanselman.
Agile & Coding: FakeMaker – helping you with test driven EPiServer development
Introducing ASP.NET 5 | Build 2015 | Channel 9
Google Chrome – Command Line API Reference
ASP.NET 5 Documentation — aspnet 0.0.1 documentation
A Lap Around .NET 2015 | Build 2015 | Channel 9
Deep Dive into ASP.NET 5 | Build 2015 | Channel 9
Elevator Saga – the elevator programming game
Geeky javascript challenge!