91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義特性用途---案例:操作權限

發布時間:2020-05-15 06:24:10 來源:網絡 閱讀:1058 作者:1473348968 欄目:編程語言

--------------------------------------------------LimitAttribute.cs   自定義特性

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
/// LimitAttribute 的摘要說明
/// </summary>
//特性只作用與方法上
[AttributeUsage(AttributeTargets.Method)]
public class LimitAttribute:Attribute
{
    private string _name;
    public string Name
    {
        get { return _name; }
    }
 public LimitAttribute(string name)
 {
        this._name = name;
 }
}

--------------------------------------------------Default.aspx

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Reflection;
public partial class _Default : System.Web.UI.Page
{
    public static readonly string _name = "李四";
    protected void Page_Load(object sender, EventArgs e)
    {
    }
    /// <summary>
    /// 判斷該用戶是否有執行權限
    /// </summary>
    /// <param name="name">用戶名稱</param>
    /// <param name="method">方法名稱</param>
    /// <returns></returns>
    private bool IsLimit(string name, string method)
    {
        //獲取該類型
        Type t = typeof(_Default);
        //查找該方法
        MethodInfo mi = t.GetMethod(method);
        if (mi == null)
            return false;
        
        //獲取方法上的特性
        LimitAttribute la = Attribute.GetCustomAttribute(mi, typeof(LimitAttribute)) as LimitAttribute;
        if (la == null)
            return false;
        
        //判斷用戶
        if (la.Name == name)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    [Limit("張三")]
    public void btnView_Click(object sender, EventArgs e)
    {
        if (IsLimit(_name, "btnView_Click"))
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('我是查看')", true);
        }
        else
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('對不起,您沒有權限操作')", true);
        }
    }
    [Limit("李四")]
    public void btnEdit_Click(object sender, EventArgs e)
    {
        if (IsLimit(_name, "btnEdit_Click"))
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('我是修改')", true);
        }
        else
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('對不起,您沒有權限操作')", true);
        }
    }
    [Limit("李四")]
    public void btnAdd_Click(object sender, EventArgs e)
    {
        if (IsLimit(_name, "btnAdd_Click"))
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('我是添加')", true);
        }
        else
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('對不起,您沒有權限操作')", true);
        }
    }
    [Limit("王五")]
    public void btnDel_Click(object sender, EventArgs e)
    {
        if (IsLimit(_name, "btnDel_Click"))
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('我是刪除')", true);
        }
        else
        {
            ClientScript.RegisterStartupScript(this.GetType(), "ClientScript", "alert('對不起,您沒有權限操作')", true);
        }
    }
}

自定義特性用途---案例:操作權限

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凌海市| 遂昌县| 沂源县| 昭平县| 盐源县| 马边| 西林县| 德阳市| 阿拉善右旗| 隆林| 谷城县| 闵行区| 怀宁县| 平顺县| 政和县| 镶黄旗| 宜良县| 台北县| 高阳县| 凌云县| 贵阳市| 绥化市| 天长市| 兴城市| 靖西县| 巴青县| 白朗县| 长寿区| 盐边县| 诸城市| 宜章县| 商河县| 庆安县| 铁岭县| 浪卡子县| 遂宁市| 郧西县| 诸暨市| 建始县| 南投县| 乐平市|