我正在编写一个 ASP.NET Web 应用程序。
我有一个登录屏幕,上面有一些 CSS 样式和图像。我遇到了样式和图像未显示的问题。我在网上阅读,它说我需要一个 web.config 在我的 Content 文件夹中。我在 web.config 中添加了以下内容:
<configuration>
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</configuration>
这似乎在我的本地机器上工作。但是,当我发布到服务器上的 inetpub 时,它不起作用。
这是我的文件夹结构:
Login/Login.aspx - 我的登录屏幕
Content - 这是我的根内容文件夹
Content/Styles - 这是我的 CSS 所在的位置
Content/Images - 这是我的图像存储位置
我也尝试将相同的 web.config 放在 Styles 和 Images 中,但这也不起作用。
任何帮助,将不胜感激。
更新:
这是我在主 web.config 中与用户访问相关的内容:
<location path="Content">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
更新 2: 除了连接字符串信息之外,这是我的根 web.config 中的所有内容:
<system.web>
<httpRuntime requestValidationMode="2.0"/>
<compilation debug="true" targetFramework="4.0"/>
<sessionState cookieless="UseCookies"/>
<authentication mode="Forms">
<forms name="CMS" loginUrl="Login/Login.aspx" timeout="25" slidingExpiration="true"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<membership>
<providers>
<clear/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
</providers>
</membership>
<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
</providers>
</profile>
<roleManager enabled="false">
<providers>
<clear/>
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/>
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/>
</providers>
</roleManager>
</system.web>
<location path="Content" allowOverride="false">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
这里会不会有干扰用户访问的东西?