本文介绍了什么是asp.net中的通用处理程序及其使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是asp.net的新手.我想了解asp.net中的通用处理程序以及如何使用以及在何处使用?
I am new in asp.net. i want to know about the generic handlers in asp.netand how and where it use?
你能帮我吗?
推荐答案
通用处理程序是实现System.Web.IHttpHandler接口的.NET组件.任何实现IHttpHandler接口的类都可以充当传入HTTP请求的目标.页面也是通用处理程序.通常,通用处理程序具有ASHX的扩展名.
Generic handlers are the .NET components that implement the System.Web.IHttpHandler interface. Any class that implements the IHttpHandler interface can act as a target for the incoming HTTP requests. Page is also generic handler. In general generic handlers have an extension of ASHX.
您可以在此处
这篇关于什么是asp.net中的通用处理程序及其使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!