IgnoreRoute with webservice - Exclude asmx URLs from routing

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

    I got it to work using this (a combo of other answers):

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

提交回复
热议问题