Monday, November 30, 2015

Demystify Web API Versioning

Demystify Web API Versioning Since technology is evolving every day, you may have the opportunity to upgrade your existing business needs and this tutorial is about WebApi Versioning using Routing. Once you have published a successful API, the client/consumers will start depending on it, but change is required as business grows. Requirements are...

Sunday, November 22, 2015

Bind DropDownListFor at runtime in MVC : An Essential Tip During an implementation of MVC View page ,I struggled little to bind the DropDownList with the runtime value from ViewModel . Here is the pictorial representation to Bind the DropDownList at runtime. Image Representation As depicted below: Hope it will help you to bind DropDownListFor at...

Thursday, November 19, 2015

Custom Directive in AngularJS

Custom Directive in AngularJS : A Simplified practical approach This tutorial is about to create Custom Directives in Angular JS I feel it would be a good brain teaser if I come with some real time example. Generally we use directives in AngularJS and this is how Directives makes AngularJS so powerful. Directives are the key part of AngularJS...

Thursday, October 8, 2015

Log4net.dll to Log Information

Log4net.dll to Log Information Hi GeeksMy new article states how to use the Log4net's external Log4net.dll to log information that might be beneficial for error tracking and other tracing issues.There are a few things that you need to consider during the implementation. I've also attached the code segment to understand the code better and in a more...

Wednesday, October 7, 2015

Modify the value of readonly varibale

Modify the value of readonly varibale The readonly keyword is a modifier that you can use on fields. When a field declaration includes a readonly modifier, assignments to the fields introduced by the declaration can only occur as part of the declaration or in a constructor in the same class. This is how we declare a readonly variable: 1: public...

Wednesday, August 26, 2015

WebApi: Custom MediaTypeMappings in WebApi MVC 4

WebApi: Custom MediaTypeMappings in WebApi MVC 4 In this article I’ll explain about Custom MediaTypeMappings in WebApi. In this article I'll explain Custom MediaTypeMappings in the WebApi.From the ASP.NET Web API perspective, serialization is the process of translating a .NET Common Language Runtime (CLR) type into a format that can be transmitted...