3

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

1
  • 1
    A little more detail is in order, methinks. Commented Nov 20, 2010 at 5:30

2 Answers 2

3

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.

Sign up to request clarification or add additional context in comments.

Comments

1

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.