我正在尝试建立一个基于 ASP.net 的网站。我有一个登录页面,并且我已经在数据库中有一些用户。但是当我输入正确的用户名和密码时,系统显示一个错误,它说:“/”应用程序服务器错误,找不到资源。我认为我的 web.congif 有什么问题吗?或任何其他问题。我确实需要帮助。
<configuration>
<connectionStrings>
<add name="ConnectionString" connectionString="Server=databaseurl; pwd=password;uid=username; database=databasename"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<roleManager enabled="true" />
<authorization>
<allow users="*"/>
</authorization>
<authentication mode="Forms">
<forms loginUrl="~/Register/Login.aspx" timeout="2800"/>
</authentication>
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>
谢谢
吉米