user496949
user496949

Reputation: 86055

http handler and asp.net mvc

I have a http hanlder to provide service to client. Do I need to change if adopting asp.net mvc?

Upvotes: 3

Views: 416

Answers (2)

Darin Dimitrov
Darin Dimitrov

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

Shiv Kumar
Shiv Kumar

Reputation: 9799

No you don't have to. You can continue to use your handler as is.

Upvotes: 1

Related Questions