What is the difference between apicontroller and mvc controller?
Answer Posted / Rahul Chakraborty
ApiController is a base class in ASP.NET MVC used for creating RESTful services, while Controller (without the Api part) is the base class for traditional web applications. ApiController uses the Http verb-based routing system and returns data in various formats like JSON or XML, whereas Controller supports more traditional MVC patterns.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers