How to upgrade from ASP.NET MVC Version 4 to 5?
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
...on a journey to become an outlier software engineer!
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
What is Dependency Injection? In simple words, Dependency Injection (DI), is a type of IoC where the creation and binding of a dependency is moved outside of the class that...
What is Inversion of Control (IoC)? IoC is basically a pattern that we use to apply Dependency Inversion Principle. Most people mix DIP, IoC and DI together! It’s good to have...
Vocabulary required for this article: Dependency Inversion Principle (DIP): This is a principle used in architecting software. Inversion of Control (IoC): This is a pattern used to invert interfaces, flow...
Below are the links to download cheat sheets for umbraco which I have found really useful: Razor DynamicNode Cheat Sheet Umbraco v6 MVC Razor Cheat Sheet
Below is a link to a resource that provides very good information on razor syntax. Reference: http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx
I spend most of my programming time within Visual Studio and I never liked the white theme that came out of the box. Same is with the Chrome Developer Tools....
I often find myself installing a software or package for my projects while working on mac where I need to add a specific path to my $PATH variable. So, I...
I came across a scenario where I had to access some information from a file with `.dll` extension. And then I thought to write this post. This information may include...
Recently I had a need to use HTML5 LocalStorage API in my web application project check my reference. The requirement was to save the vertical scroll position of window when...
More