ASHX handler with ASP.NET MVC 3 and Razor

一笑奈何 提交于 2019-12-04 03:28:32
Tomas Jansson

My guess is that it is easier because it is part of a (older?) third party library and it easier to just follow the instructions that tells you to set something in web.config. You should be able to ignore requests to *.ashx by ignoring routes to *.ashx files. You should be able to use something like this, but I haven't tried it myself:

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

The problem is that I need to use ashx handler to handle file upload

Who told you that you need a handler? Everything that you could do in a handler could be done in a controller action. You even have access to the raw Request.InputStream if necessary.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!