2

我正在使用表单身份验证方法创建登录页面。我在登录页面中插入了一个图像,但图像在浏览器中不可见。因为它在 Visual Studio 的设计视图中查看。

我认为匿名用户访问图像目录存在问题。我在 Web.config 中使用了以下代码

<location path="/images">
    <system.web>
      <authorization>
        <allow users ="*" />
      </authorization>
    </system.web>
  </location>
4

1 回答 1

1

我已经解决了。我在图像和 css 文件夹中添加了带有以下代码的 Web.cofig,以提供匿名访问。

<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
  <system.web>
    <authorization>
      <allow users="*" />
    </authorization>
  </system.web>
</configuration>
于 2012-09-26T06:21:55.933 回答