ASP.NET MVC Routing vs. Reserved Filenames in Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:43:31Z http://stackoverflow.com/feeds/question/987105 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windows 18 ASP.NET MVC Routing vs. Reserved Filenames in Windows Benjamin Pollack 2009-06-12T14:58:59Z 2009-07-07T21:16:21Z <p>In our ASP.NET MVC application, we've noticed that we cannot have The Forbidden DOS File Names&mdash;<code>COM1</code> through <code>COM9</code>, <code>LPT1</code> through <code>LPT9</code>, <code>CON</code>, <code>AUX</code>, <code>PRN</code>, and <code>NUL</code>&mdash;anywhere in our routes. They inevitably result in IIS telling us the file cannot be found, even when we set routing not to check for the existence of files first. How can we work around this?</p> http://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windows/987689#987689 12 Answer by Benjamin Pollack for ASP.NET MVC Routing vs. Reserved Filenames in Windows Benjamin Pollack 2009-06-12T16:36:04Z 2009-06-12T16:36:04Z <p>Since asking the question, I've found that the bug is in ASP.NET proper, not IIS or ASP.NET MVC, meaning that there's no way to work around it. The only solution is to manually forbid URLs matching these names and these names followed by a period and random characters.</p> http://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windows/987934#987934 3 Answer by Dennis Palmer for ASP.NET MVC Routing vs. Reserved Filenames in Windows Dennis Palmer 2009-06-12T17:25:02Z 2009-06-12T17:25:02Z <p>For a similar reason, there can't be a <code>web.config</code> tag in StackOverflow.</p> <p><a href="http://stackoverflow.uservoice.com/pages/1722-general/suggestions/98871-web-config-tag-404-error" rel="nofollow">http://stackoverflow.uservoice.com/pages/1722-general/suggestions/98871-web-config-tag-404-error</a></p> http://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windows/1094937#1094937 0 Answer by Jokin for ASP.NET MVC Routing vs. Reserved Filenames in Windows Jokin 2009-07-07T21:16:21Z 2009-07-07T21:16:21Z <p>for another similar reason you can't have urls with a dot and a slash <a href="http://stackoverflow.com/questions/294495/semantic-urls-with-dots-in-net">http://stackoverflow.com/questions/294495/semantic-urls-with-dots-in-net</a></p>