Thursday, July 19, 2018

Building A Restful API In ASP.NET

Let’s have a quick review of ASP.NET MVC Architecture. So when the request arrives at our application MVC Framework hands off that request to an action in a controller, this action most of the time returns view which is then parse by razor view engine and then eventually html markup is return to the client. So in this approach html markup is generated on the server and then return to the client.

source https://www.c-sharpcorner.com/article/building-a-restful-api-in-asp-net/

No comments:

Post a Comment