Call the default asp.net HttpHandler from a custom handler

后端 未结 3 1067

I\'m adding ASP.NET routing to an older webforms app. I\'m using a custom HttpHandler to process everything. In some situations I would like to map a particular pat

3条回答
  •  囚心锁ツ
    2021-02-03 11:31

    I'm you're using Routing in webforms you should be able to just add an ignore route for the specific .aspx files you want. This will then be handled by the default HttpHandler.

    http://msdn.microsoft.com/en-us/library/dd505203.aspx

提交回复
热议问题