Browser Extension Plugin for VS2010
This is a nice extension for VS2010 to allow you to change the default browser on debugging mode http://visualstudiogallery.msdn.microsoft.com/bb424812-f742-41ef-974a-cdac607df921
This is a nice extension for VS2010 to allow you to change the default browser on debugging mode http://visualstudiogallery.msdn.microsoft.com/bb424812-f742-41ef-974a-cdac607df921
My manager recommended us to check this website in order to help us keep tracking of what need to be done What I like is the simple UI and easy to use. It helps people to…
Before I was thinking of rewriting my own logging for my application but after having a careful thought, I decided just to get one from NuGet package instead of reinventing the wheel. I heard a lot…
Initially, I always pass individual object properties through JSON and form the model in the controller as I wasn’t sure how to pass/form a model from Javascript to controller Controller Code Snippet [AllowAnonymous] public ActionResult JsonRegister(string…
Normally, when you used HttpPost/Form submission to post the view through the controller then you can have the model validation applied automatically through @Html.ValidationSummary() But how do you get the ModelState errors through Json? You can…
This is the cloud version of Microsoft Power Point. It is created by the company that I’m working for at the moment. I’m blogging this not because I’m working for them but I’m blogging this based…
This is a simple tutorial in how to use Dependency Injection using SimpleInjector (You can get this package from NuGet) In this case, I use SimpleInjector to manage my Data Context – I want my Data…
I found this benchmark for different IoC in .NET. Personally I’ve been using Unity, Ninject and SimpleInjector. I like SimpleInjector because it is very simple and surprisingly it is quite fast compared with the rest. Performance…