Http handler and asp.net mvc

I have http hanlder to provide services to a client. Do I need to change if you are using asp.net mvc?

+3
source share
2 answers

ASP.NET MVC is built on top of the ASP.NET engine, which supports HTTP handlers. That way you can use your handler in an ASP.NET MVC application. However, HTTP handlers are not a common way of providing functionality in an ASP.NET MVC application. You should use controller actions, but if you have this existing handler, you can use it.

+3
source

, . .

+1

Source: https://habr.com/ru/post/1775943/


All Articles