Reputation: 86055
I have a http hanlder to provide service to client. Do I need to change if adopting asp.net mvc?
Upvotes: 3
Views: 416
Reputation: 1038710
ASP.NET MVC is built on the top of the ASP.NET engine which supports HTTP handlers. So you can use your handler in an ASP.NET MVC application. This being said, HTTP handlers are not the common way to provide functionality in an ASP.NET MVC application. Controller actions should be used but if you have this existing handler you can use it.
Upvotes: 3
Reputation: 9799
No you don't have to. You can continue to use your handler as is.
Upvotes: 1