What\'s the best way to implement user tracking throughout your web site when using Razor views in ASP.NET MVC 3.
In webforms I\'d put some code in the masterpage to
I wouldn't do any of it with Razor views.
You will want to build an ActionFilter and attach it as a GlobalFilter. Let it do all the work for you.
More good reading...