IgnoreRoute with webservice - Exclude asmx URLs from routing

前端 未结 6 649
没有蜡笔的小新
没有蜡笔的小新 2020-12-30 08:48

Im adding the filevistacontrol to my asp.net MVC web application.

I have a media.aspx page that is ignored in the routing with

routes.IgnoreRoute(\"m         


        
6条回答
  •  失恋的感觉
    2020-12-30 09:29

    What happens when you use:

    routes.IgnoreRoute("FileVistaControl/filevista.asmx");
    

    If that doesn't work, try using the ASP.NET Routing Debugger to help you: http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx

提交回复
热议问题