wsjeng needs
13 years ago
to do some study on ASHX (ASP.net web Handler)
wsjeng has
13 years ago
Web handlers work just like .aspx files except you don’t have to deal with the browser interface
wsjeng has
13 years ago
Web handlers are generally used to generate content dynamically like returning XML or an image
wsjeng has
13 years ago
Web handlers use the IHttpHandler interface with the ProcessRequest() method invoked when the handler is requested
立即下載
wsjeng has
13 years ago
Web handlers are simpler than pages (fewer events and wiring), so they are ideal for performance-critical applications