Mohamed
Mohamed

Reputation: 3600

advantages and disadvantages of using asp.net custom handlers?

what are the advantages and disadvantages of using asp.net custom handlers such as http handlers and etc? what kind of security issues will I face?

Upvotes: 1

Views: 883

Answers (1)

Klaus Byskov Pedersen
Klaus Byskov Pedersen

Reputation: 120937

There are no disadvantages as such. The IHttpHandler is a core concept of asp.net. Any Page instance is also an IHttpHandler. You will face no security issues that you are not already facing.

Hope this answers your question.

/Klaus

Upvotes: 1

Related Questions