0

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

谢谢

吉米

4

1 回答 1

0

你没有提供足够的信息,所以我会采取行动。

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

在此处输入图像描述

在此处输入图像描述

于 2013-03-14T02:48:06.427 回答