zoukankan      html  css  js  c++  java
  • asp.net 中 Forms驗証

    web.config
        <authentication mode="Forms">
          <forms loginUrl="Login.aspx"
                 protection="All"
                 timeout="30"
                 name=".ASPXAUTH"
                 path="/"
                 requireSSL="false"
                 slidingExpiration="true"
                 defaultUrl="default.aspx"
                 cookieless="UseDeviceProfile"
                 enableCrossAppRedirects="false" />
        </authentication>

    所有用戶必須登陸
        <authorization>
          <deny users="?" />
        </authorization>
    允許所有用戶不需要登陸
    <allow users="*"/>

    指定用戶權限
    <allow users="Admin"/>
    <deny users="*"/>

    指定目錄裡面程序權限
    <location path ="Public">
                <system.web>
                    <authorization>
    <allow users="*"/>
    </authorization>
                </system.web>
           </location>

    <location path ="ManageSys">
                <system.web>
           <authorization>
    <allow users="Admin"/>
    <deny users="*"/>
    </authorization>
                </system.web>
           </location>

    指定某個具體化程序
    <location path ="ManageSys/Auditing.aspx">

    .cs程序中
     System.Web.Security.FormsAuthentication.RedirectFromLoginPage(this.TextBox1.Text, false);
    轉入到程序打開的頁面

    System.Web.Security.FormsAuthentication.SetAuthCookie(this.TextBox1.Text, false);
    Response.Redirect("Default.aspx");
    轉入到指定的頁面

    if (User.Identity.IsAuthenticated)
    {
                    Response.Write("已經登陸");
    }
    具體某個程序裡面判斷是否登陸

    System.Web.Security.FormsAuthentication.SignOut();
    登出

  • 相关阅读:
    Navicat Premium 12.1.12.0破解版激活
    vConsole调试器
    使用DbFunctions来解决asp.net mvc ef按照日期分组数据
    谷歌浏览器如何安装CRX插件?crx离线插件安装方法
    ASP.NET MVC——CodeFirst开发模式
    Sql server 事务的两种用法
    SQL Server 存储过程
    JqueryMobile新手问题大全
    .net core 轻量级容器 ServiceProvider 源码分析
    Centos7 使用Docker 部署mssql 2017
  • 原文地址:https://www.cnblogs.com/cnaspnet/p/532071.html
Copyright © 2011-2022 走看看