I have an ASP.NET MVC 3 application, that resides in lets say localhost/myapp under IIS.
There is a virtual directory (not application) localhost/myapp/upload under that application in IIS (version 7+) that is mapped to a network share.
I want ASP.NET to ignore requests to files under that directory, and let IIS handle the request on its own.
I tried things like adding routes.IgnoreRoute("upload/{*pathInfo}") to global.asax.cs but still no luck.
Getting ASP.NET errors like failed to start monitoring changes to '\\server\share\myupload\web.config' when i try to access a static file e.g. a jpeg under that directory.
There is no web.config file under that upload directory. It is not an ASP.NET application. And i don't want to grant access to network service, or ASP.NET user to just let it check that no such file exists there. If i do, someone would upload an .aspx file there and execute whatever code they like in my server.
Any ideas?