Icemanind
Icemanind

Reputation: 48736

Building a RESTful API in ASP.NET

I have seen a ton of sites on tutorials and how-to's for building your own RESTFul API using ASP.NET. All of them seem to use MVC though. Is it possible to build my own RESTFul API using ASP.NET and WebForms, without using MVC? If anyone has links to a tutorial or something, that'd be great!

Upvotes: 0

Views: 225

Answers (1)

Mike Marshall
Mike Marshall

Reputation: 7850

Use ASP.NET Web API. It will be the canonical HTTP API server framework moving forward.

Upvotes: 2

Related Questions