What isthe use of Generic handler In asp.net.?
I am new in Asp.net. But am familiar with jsp .I am searching for how to add a controller f开发者_Go百科or an asp page. Ad I want to know what is this Generic Handler.
Please say clearly what do you mean by "controller". Generic Handlers(.ashx) are basically HTTP Handlers that can process requests to exactly one url. They are good substitute for .aspx file in some cases like writing out the contents of files stored in the server for download etc.
精彩评论