“/”应用程序中的服务器错误。
无法找到资源。
说明:HTTP 404。您正在查找的资源(或者它的一个依赖项)可能已被移除,或其名称已更改,或暂时不可用。请检查以下 URL 并确保其拼写正确。请求的 URL: /Account/Login.aspx
版本信息: Microsoft .NET Framework 版本:4.0.30319; ASP.NET 版本:4.0.30319.1017
原因
在web.config中配置了
<?xml version="1.0"?>
<configuration>
<system.web>
<authorization>
<deny users="?"/> 必须有登录用户才能访问
</authorization>
</system.web>
</configuration>
<configuration>
<system.web>
<authorization>
<deny users="?"/> 必须有登录用户才能访问
</authorization>
</system.web>
</configuration>
解决方法添加 login页面
<?xml version="1.0"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="ApplicationServices"
connectionString="Data Source=(Local);database=langsinSQL;uid=sa;pwd=wlg;"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" timeout="2880" /> <!--登录验证 timeout超时时间 --> 这里指示登录页面的地址
</authentication>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="ApplicationServices"
connectionString="Data Source=(Local);database=langsinSQL;uid=sa;pwd=wlg;"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" timeout="2880" /> <!--登录验证 timeout超时时间 --> 这里指示登录页面的地址
</authentication>