Category Archives: ASP.NET Web API

Model Validation in ASP.NET Web API

In my previous articles, I discussed about MVC (Model-View-Controller) architecture as well as its implementation in details. I am expecting that the reader of this article already understand about the role of Model in an ASP.NET MVC application. Model in MVC is basically a representation of our data structure. So, here in this article, we… 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 »

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 »