Code Weaving in .NET using Fody

In almost all .NET applications you encounter lot of boilerplate code which although has pretty standard implementation but is quite important from implementation point of view. Some common examples are…

Read more

Query Objects

Lets consider two situations mentioned below which define the problem.I guess lot of you would be familiar with the first one. Problem Situation 1 : You start with a project…

Read more



Custom request validation in ASP.NET

ASP.NET request validation is ASP.NET’s built in way of saving our applications from dangerous script injection attacks or XSS attacks.The default validation provided by asp.net  is quite restrictive i.e. it…

Read more




AngularJS Routing

In this post I am going to talk about anuglarJS routing.We will develop a small sample application so that we can get a good idea of how to implement routing.…

Read more

Creating custom service in AngularJS

Concept of services in angular can be confusing initially if you come from background of frameworks / languages which support SOA or various kind of web / window services.I am…

Read more