IgnoreRoute with webservice - Exclude asmx URLs from routing

前端 未结 6 518
没有蜡笔的小新
没有蜡笔的小新 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:39

    Have you tried:

    routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
    routes.IgnoreRoute("{resource}.asmx/{*pathInfo}");
    

提交回复
热议问题