ASP.NET MVC Routing vs. Reserved Filenames in Windows - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:43:31Zhttp://stackoverflow.com/feeds/question/987105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windows18ASP.NET MVC Routing vs. Reserved Filenames in WindowsBenjamin Pollack2009-06-12T14:58:59Z2009-07-07T21:16:21Z
<p>In our ASP.NET MVC application, we've noticed that we cannot have The Forbidden DOS File Names—<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>—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#98768912Answer by Benjamin Pollack for ASP.NET MVC Routing vs. Reserved Filenames in WindowsBenjamin Pollack2009-06-12T16:36:04Z2009-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#9879343Answer by Dennis Palmer for ASP.NET MVC Routing vs. Reserved Filenames in WindowsDennis Palmer2009-06-12T17:25:02Z2009-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#10949370Answer by Jokin for ASP.NET MVC Routing vs. Reserved Filenames in WindowsJokin2009-07-07T21:16:21Z2009-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>