IIS7 Forms Authentication Doesn't Deny Image Access
问题 I have a basic ASP.NET website set up in IIS7 with forms authentication enabled on the server. Just for grins, I deny everyone: <?xml version="1.0"?> <configuration> <system.web> <authentication mode="Forms"> <forms name=".ASPXAUTH" loginUrl="Login.aspx" defaultUrl="Test.aspx" protection="All" timeout="30" path="/" requireSSL="false" slidingExpiration="true"/> </authentication> <authorization> <deny users="*"/> </authorization> <compilation debug="true"/> </system.web> </configuration> When I