Bin directory script access with ASP.NET
When you create an ASP.NET application the Execute and Read permissions are removed from the Bin folder (located in your Web Site root). Because of these settings, you will receive an error message when you try to gain access to a script in the Bin folder. This behavior is by design. Microsoft does not recommend that you use the Bin folder to store uncompiled ASPX pages. The Bin folder stores the binary files that are not included in the global assembly cache.
<< Back |