在asp.net web.config中,如何配置httphandlers?

时间:2014-02-27 09:15:18

标签: asp.net web-config httphandler

情况是我希望所有文件类型都由指定的dll 处理,除了' aspx'文件

但我不知道如何编辑配置文件。如下:

<system.web>
    <httpHandlers>
         <add verb="*" path="*" type="My.Handler" />
    </httpHandlers>
</system.web>

所有请求都将由My.Handler处理。如何正常访问aspx文件?

3 个答案:

答案 0 :(得分:5)

我有一个“解决方法”,但它有点“hacky”(我只在本地测试过它)......


<强> 1。创建以下课程:

public class PassThroughAspxHandler : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
      var pageInstance = PageParser.GetCompiledPageInstance(context.Request.AppRelativeCurrentExecutionFilePath, 
                                                            context.Request.PhysicalApplicationPath + context.Request.Path, 
                                                            context);
      pageInstance.ProcessRequest(context);
    }


    public bool IsReusable
    {
      get { return false; }
    }
  }

<强> 2。将条目添加到以下网址: (此部分适用于IIS7集成应用程序池,如果您使用的是经典应用程序池,则会略有不同):

 <system.webServer>
     <handlers>
       <add verb="*" path="*.aspx"
        name="PassThroughAspxHandler"
        type="YourNameSpaceHere.PassThroughAspxHandler"/>
     </handlers>
   </system.webServer>

答案 1 :(得分:2)

只是一个猜测,但尝试在你想出的那个之后添加它:

<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory"/>

答案 2 :(得分:1)

试试这个,在Robert的帖子中添加一些

<add verb="*" path="*.aspx" type="Your handler class name"/>

参考this link