我正在使用表单身份验证方法创建登录页面。我在登录页面中插入了一个图像,但图像在浏览器中不可见。因为它在 Visual Studio 的设计视图中查看。
我认为匿名用户访问图像目录存在问题。我在 Web.config 中使用了以下代码
<location path="/images">
<system.web>
<authorization>
<allow users ="*" />
</authorization>
</system.web>
</location>