本文介绍了如何添加一个HttpHandler到web.config?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我写了的HttpHandler
来处理所有XSLT的请求。
处理程序的名称是 XSLTHandler.cs
。
的web.config
<结构>
<&的System.Web GT;
<编译调试=真targetFramework =4.0/>
<&HttpHandlers的GT;
<添加动词=*路径=* XSL。TYPE =XSLTHandler/>
< / HttpHandlers的>
< /system.web>
< /结构>
我收到此错误信息,不知道如何解决它。
解决方案
What you're missing is the assembly and namespace that XSLTHandler belongs in, from MSDN. So if it's located in your current project, it should look like this:
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.xsl"
type="WebApplicationName.XSLTHandler, WebApplicationName" />
</httpHandlers>
</system.web>
</configuration>
这篇关于如何添加一个HttpHandler到web.config?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!