我正在尝试建立一个基于 ASP.net 的网站。我先做了主要功能,我需要让网站安全。所以我将 web.config 设置为:
<system.web>
<authorization>
<deny users="?" />
</authorization>
<authentication mode="Forms">
<forms loginUrl="~/Register/Login.aspx" timeout="2800"/>
</authentication>
<compilation debug="true" targetFramework="4.0" />
</system.web>
当我删除这些代码时,我可以添加任何图像或任何元素,它们会显示出来。但是如果我添加这些代码,图像将不会显示。有人对此有任何想法吗?