我在Web应用程序中有一些错误

时间:2013-03-14 01:03:14

标签: c# asp.net web-config

我正在尝试建立一个基于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>

由于

1 个答案:

答案 0 :(得分:0)

你没有提供足够的信息,所以我会摇摆不定。

在Visual Studio 2010中,如果您将页面设置为Start Page并意外删除该页面,则会收到The resource cannot be found.错误。

enter image description here

enter image description here