What is the purpose and usage of ASP.NET Handler (.ashx) files? [duplicate]
What is the purpose of ASP.NET Handler (.ashx files) and how best can they be used?
An ASHX handler allows you a discrete http handler without the overhead of processing a page request (an ASPX file).
精彩评论