In my last blog I introduced the basics of using ASP.NET AJAX and WebAPI together in the same project. In addition, I showed how to bind results from WebAPI to a Telerik’s ASP.NET AJAX Grid. In this blog I will continue down this path and implement insert, update, and delete operations using WebAPI and RadGrid!
Note: While this post focuses on using WebAPI in conjunction with RadGrid, most of the client code can be used when working with RadGrid in client mode.
Set It Up!
To get started an additional reference needs to be added to the project:
- System.Net.Http.Formatting
Adding this reference allows us...