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...

Return Multiple Models in single View in MVC4

Return Multiple Models in single View in MVC4   As Exploring MVC more, today I am going to share one the interesting fact about MVC 3 to use multiple models in single view. I belief this is one the interesting fact about MVC, which may be in use on regular basis. Because in today’s world generally we don’t keep data into single place/model. So...

Monday, August 17, 2015

Aggregation Vs Composition: A Simple Practical Approach This article explains the real facts of Aggregation and Composition and I feel it would be a good brain teaser if I come with some actual examples. Before proceeding I'd like to share one of the possible situations that you may encounter in your daily need or maybe in an interview. Let's dive...

Tuesday, August 11, 2015

Extend Sealed Class in C# Using Extension Method - A Simple Approach Here we will extend sealed class in C# using extension method.Requirement - What is sealed. Can we derive this? If yes, then how we can achieve this?Friends this is one of the possible situation which you may confront in your daily need or may be in an interview. Let’s dive it into...

Saturday, August 8, 2015

JQuery Interview question and answer with practical: Part 1   Question: What is jQuery?Ans: JQuery is fast, lightweight and feature-rich client side JavaScript Library/Framework which helps in to traverse HTML DOM, make animations, add Ajax interaction, manipulate the page content, change the style and provide cool UI effect. It is one of...