IgnoreRoute with webservice - Exclude asmx URLs from routing

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

    Try this:

    routes.IgnoreRoute("{*filevista}", new { filevista = @"(.*/)?filevista.asmx(/.*)?" }); 
    

    This is based on a Phil Haack recommendation stated here.

提交回复
热议问题