Friday, December 7, 2012

Think First, Code Later

http://24ways.org/2012/think-first-code-later/

You, or someone just like you, have been building a website, probably as part of a skilled and capable team. You’re a front-end developer, focusing on JavaScript – it’s either your sole responsibility or shared around. It’s quite a big job, been going on for months, and at last it feels like you’re reaching the end of it

Thursday, December 6, 2012

How to fix "An unhandled Microsoft.NET Framework exception occured in w3wp.exe"

Change the ApplicationPoolIdentity of the application pool for your project to an account such as Local System.

How to install ASP.NET MVC4 into Visual Studio 2010?

http://www.microsoft.com/en-us/download/details.aspx?id=30683

How to disable session in ASP.NET MVC?

Two levels:
Application level is in web.config
<sessionState mode="Off" />

Controller level
[SessionState(SessionStateBehaviour.Disabled)]
public class MyController : Controller
{}