如何使只有经过身份验证的用户才能访问ASP .NET项目中的页面

时间:2019-01-03 06:09:48

标签: c# asp.net .net

我要制作的是这样,以便在登录到站点后,应用程序会自动将用户重定向到应用程序的默认页面。 同样,重要的是,用户必须先登录才能访问登录网页以外的任何内容。 我已经坚持了三天了。 我们有一个可怕的教授,他没有正确地做他的文档(我必须去搜索所有内容,而不是在脚本中放东西)

用户的凭据在Web.config文件中被硬编码为键值。它们不会根据数据库进行检查,而只会根据硬编码的字符串进行检查。

这是我的代码:

The design of the login page (it's the Login element from the toolbox, not something manually constructed).

这是该页面的代码: Login.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;

namespace LV1___Kalkulator
{
    public partial class Login : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected bool ValidateUser(String username, String password)
        {
            if (Login1.UserName == "tstipic" && // ConfigurationManager.AppSettings["korisnickoime"] &&
               Login1.Password == "password") //ConfigurationManager.AppSettings["sifra"])
            {
                return true;
            }
            else return false;
        }

        protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
        {
            if (e.Authenticated)
            {
                Response.Redirect("Dafault.aspx");
            }
            if (ValidateUser(Login1.UserName, Login1.Password))
            {
                Response.Redirect("Dafault.aspx");
            }
            else
            {
                e.Authenticated = false;
            }
        }
    }
}

这是我的 web.config 文件:

<?xml version="1.0" encoding="utf-8"?>

<!--
  For more information on how to configure your ASP.NET application, please visit
  https://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>    
  <system.web>

    <compilation debug="true" targetFramework="4.6.1"/>
    <httpRuntime targetFramework="4.6.1"/>
  </system.web>
  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs"
        type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701"/>
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
        type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
    </compilers>
  </system.codedom>
  <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
    <add key="korisnickoime" value="user"/>
    <add key="sifra" value="pass"/>
    </appSettings>
  <connectionStrings>
    <add name="konekcijaNaBazu"
       connectionString="Provider=Microsoft.Jet.OLEDB.4.0;
       Data Source=|DataDirectory|\ASP_Database.mdb"
       providerName="System.Data.OleDb"/>  
  </connectionStrings>
</configuration>

编辑:我已经执行了Albert D. Kallal的建议。 这似乎是朝着正确方向迈出的一步,但我仍在经历相同的结果。我输入了正确的凭据,仅能重新显示登录页面。

1 个答案:

答案 0 :(得分:0)

假设您已启用安全性,则需要在配置文件中使用它:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
       <authorization>
        <deny users="?"/>
       </authorization>
    </system.web>
</configuration>

以上含义和含义: 除非经过身份验证,否则不允许任何人访问网页。如果未通过身份验证,则Web服务器将自动将用户重定向到您的登录页面。结果是除非登录,否则无法点击任何网页。如果他们手动输入URL,则Web服务器会将它们重定向到登录页面,因为那是您设置为登录页面的页面。 web.config中的设置是

<authentication mode="Forms">
  <forms loginUrl="~/Account/Login.aspx" defaultUrl="~/Default.aspx" />
</authentication>

因此,以上设置了默认的网页,但是ALSO设置了每个人如果试图未经身份验证访问网页都将重定向到的页面。