如何在混合 Web 表单和 MVC 站点中使用 MS Charting?
我有一个成功使用 MS Chart 控件的 Web 表单应用程序。我安装了 MVC 3,但图表坏了。图表 url 与标准 mvc 路由匹配,因此我收到 404 错误。我尝试了在 stackoverflow 上找到的各种不同的 IgnoreRoute 配置,但都没有解决问题。
谁能告诉我为什么这不起作用: routes.IgnoreRoute("ChartImg.axd/{*pathInfo}");
正确的解决方案是什么?
I've got a web forms application that uses MS Chart control successfully. I installed MVC 3 and the charts broke. The chart url is matching the standard mvc route, so I'm getting a 404 error. I've tried all sorts of different IgnoreRoute configurations that I've found here on stackoverflow, but none have resolved the issue.
Can anyone tell me why this does not work: routes.IgnoreRoute("ChartImg.axd/{*pathInfo}");
And what the correct solution would be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用过 Phil Haack 的 RouteDebugger。它将显示该路线符合什么规则。
Have you used the RouteDebugger by Phil Haack. It will show you what rule the route is hitting.