Category Archives: ASP.NET

ASP.NET Interview Questions for Beginners and Professionals - Part 2

It’s Part-2 in series of ASP.NET Interview Questions with detailed answers and necessary code examples. Other parts of this series can be found as: ASP.NET Interview Questions - Part 1 (Controls, State Management etc.) ASP.NET Interview Questions - Part 2 (Controls, Globalization & Localization etc.) ASP.NET Interview Questions - Part 3 (Caching & Security etc.) ASP.NET Interview… Read More »

Understanding ASP.NET MVC Routing

Routing plays an important role in an ASP.NET MVC Application execution flow. Basically, it maps request URL to a specific controller action using a Routing Table.In order to describe user’s actions, MVC framework uses friendly URLs against actions instead of mapping it to physical files as in case of an asp.net Web Form application. In… Read More »

HttpHandlers and HttpModules in ASP.NET

In order to understand the concept of HttpHandlers and HttpModules in ASP.NET, we must need to understand first, how our web server and ASP.NET collectively reacts when a user requests for a particular resource? Our web server i.e. IIS does the following: It looks for the extension of the requested resource file e.g. (.aspx, .ascx… Read More »

A Practical Guide to ASP.NET Web API

Microsoft ASP.NET Web API framework is the best choice for developing HTTP services in more simpler way. It enables us to reach more wider ranger of clients such as browsers as well as mobile devices.In one of my previous web development tutorial about building RESTful service, I explained that the purpose of HTTP is not… Read More »

ASP.NET MVC3 Vs MVC4 Vs MVC5 Vs MVC6

UPDATE: This ASP.NET MVC tutorial initially targetting MVC3, MVC4 and MVC5 version. Now I have listed down features from next version of ASP.NET MVC6 (code name as ASP.NET vNext). Microsoft has added exciting features in every new version of ASP.NET MVC that make developers more comfortable building scalable web applications easily. In this ASP.NET MVC tutorial, we… Read More »

Performing CRUD operations using ASP.NET Web API - Part 2

In part-1 of this Web API development tutorial, we developed an application that perform all CRUD (Create, Retrieve, Update, Delete) operations using Microsoft ASP.NET Web API. Now, In this part, we will consume HTTP service developed using ASP.NET Web API using jQuery. If you haven’t gone through first part of this article, I’ll recommend to read… Read More »

Top 10 ASP.NET Interview Questions and Answers

“ASP.NET is a web application development framework for building web sites and web applications that follows object oriented programming approach” Following are the top 10 commonly asked Interview Questions with detailed answers on ASP.NET technology. I have also prepared a comprehensive Tutorial Series of ASP.NET Interview Questions that you can further read through to better… Read More »