我正在尝试建立一个基于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>
由于
麦
答案 0 :(得分:0)
你没有提供足够的信息,所以我会摇摆不定。
在Visual Studio 2010中,如果您将页面设置为Start Page
并意外删除该页面,则会收到The resource cannot be found.
错误。