溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制

發(fā)布時(shí)間:2021-10-08 15:14:21 來(lái)源:億速云 閱讀:130 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制”,在日常操作中,相信很多人在ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

這是這個(gè)權(quán)限控制的第一步,掃描界面把要分配權(quán)限的元素的信息獲取出來(lái)存入到數(shù)據(jù)庫(kù)中。

這一步分三小步:

(1).標(biāo)出界面所要分配權(quán)限的元素

(2).掃描界面獲取所要分配權(quán)限的元素信息。(ID,標(biāo)題,層級(jí)關(guān)系)

(3).存入數(shù)據(jù)庫(kù)中。

1.標(biāo)出界面所要分配權(quán)限的元素.

在掃描的時(shí)候一開(kāi)始我覺(jué)得很難因?yàn)镠TML元素過(guò)多又有很多層級(jí)關(guān)系。一開(kāi)始用的是<div>標(biāo)簽來(lái)表示HTML所要分配權(quán)限的元素,發(fā)現(xiàn)這個(gè)方案不行,比如把添加用戶(hù)按鈕加上DIV那么這個(gè)按鈕的樣式就變了還得調(diào)樣式我現(xiàn)在做的KS系統(tǒng)有將近100個(gè)界面,再加上現(xiàn)在的界面已經(jīng)確定好樣式,調(diào)好CSS,加上再加上DIV的話那么得重新調(diào)界面,就這個(gè)問(wèn)題想了兩三天,最后我想到要不自定義一個(gè)HTML元素標(biāo)簽為:<box></box>為這個(gè)標(biāo)簽加上ID和Title為:<box id="AddID" Title=“添加按鈕”></box>,用這個(gè)標(biāo)簽來(lái)標(biāo)記所要分配權(quán)限的元素。這樣的話既不用更改樣式又能獲取到所要的信息。更改之后的界面后臺(tái)代碼為:

復(fù)制代碼 代碼如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="kudychen@gmail.com" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>用戶(hù)管理——查詢(xún)用戶(hù)</title>

<script src="../../js/DIV/jquery.js"></script>
<script src="../../js/DIV/DIV.js"></script>
<link href="../../css/admin.global.css" rel="stylesheet" type="text/css" />
<link href="../../css/admin.content.css" rel="stylesheet" type="text/css" />

<style type="text/css">
.btn-middle {
width: 76px;
}
</style>

</head>
<body>
<form id="Form" method="post" runat="server" >
<%--box標(biāo)記 main 開(kāi)始標(biāo)記--%>
<box id="main" title="主要">
<div class="location">當(dāng)前位置:用戶(hù)管理 -> 查詢(xún)用戶(hù)</div>

<div class="blank10"></div>
<%--box標(biāo)記 QueryUser 開(kāi)始標(biāo)記--%>
<box id="QueryUser" title="查詢(xún)用戶(hù)">
<div class="search block" >
<div class="h">
<span class="icon-sprite icon-magnifier"></span>
<h4>快速搜索</h4>
</div>
<div class="tl corner"></div>
<div class="tr corner"></div>
<div class="bl corner"></div>
<div class="br corner"></div>
<div class="cnt-wp">
<div class="cnt">
<div class="search-bar">
<label class="first txt-green">用戶(hù)名:</label>
<input value="" type="text" name="username" id="username" class="input-small" />


<asp:LinkButton ID="lbtQuery" class="btn-lit" runat="server"
OnClick="lbtQuery_Click" Width="58px"><span >查詢(xún)</span></asp:LinkButton>

<%--box標(biāo)記 AddUser 開(kāi)始標(biāo)記--%>
<box id="AddUser" title="添加用戶(hù)">
<a class="btn-lit btn-middle" href="AdmAddUser.aspx">
<span>添加用戶(hù)</span>
</a>
</box>
<%--box標(biāo)記 AddUser結(jié)束標(biāo)記--%>
</div>
</div>
</div>
</div>
</box>
<%--box標(biāo)記 QueryUser結(jié)束標(biāo)記--%>

<%--box標(biāo)記 UserList開(kāi)始標(biāo)記--%>
<box id="UserList" title="用戶(hù)列表">
<span class="block">
<div class="tl corner"></div>
<div class="tr corner"></div>
<div class="bl corner"></div>
<div class="br corner"></div>
<div class="cnt-wp">
<div class="cnt">
<div class="h">
<span class="icon-sprite icon-list"></span>
<h4>用戶(hù)列表</h4>
</div>
<div class="blank10"></div>

<asp:Repeater ID="rpUserInfo" runat="server" onitemcommand="rpUserInfo_ItemCommand">
<HeaderTemplate>
<table class="data-table history" id="mainTable" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col">用戶(hù)名稱(chēng)</th>
<th scope="col">角色</th>
<th scope="col">操作記錄</th>
<th scope="col">編輯</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td class="txt160 c"><%#Eval("UserName")%></td>
<td class="txt c"><%#Eval("RoleName")%></td>
<td class="txt80 c"><a href="AdmOperatorRecord.aspx?UserId=<%#Eval("UserNo") %>" title="操作記錄">操作記錄</a></td>
<td class="icon">
<%--box標(biāo)記 EditUserInfo開(kāi)始標(biāo)記--%>
<box id="EditUserInfo" title="編輯用戶(hù)">
<a class="opt" title="編輯" href="AdmUpdateUser.aspx?UserId=<%#Eval("UserNo") %>">
<span class="icon-sprite icon-edit">
</span>
</a>
</box>
<%--box標(biāo)記 EditUserInfo結(jié)束標(biāo)記--%>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</div>
</div>
</span>
<span id="spanFirst">第一頁(yè)</span> <span id="spanPre">上一頁(yè)</span> <span id="spanNext">下一頁(yè)</span> <span id="spanLast">最后一頁(yè)</span> 第<span id="spanPageNum"></span>頁(yè)/共<span id="spanTotalPage"></span>頁(yè)
</box>
<%--box標(biāo)記 UserList 結(jié)束標(biāo)記--%>
</box>
<%--box標(biāo)記 main 結(jié)束標(biāo)記--%>
</form>
</body>
</html>



2.掃描界面獲取所要分配權(quán)限的元素信息。

由于界面上有了<box>這個(gè)元素來(lái)表示權(quán)限的元素,這樣掃描起來(lái)就好一些了不過(guò)還是遇到了不少的問(wèn)題,最終還是解決了,最難的是掃描出兩個(gè)<box>之間的父子關(guān)系。下面是JS代碼:

復(fù)制代碼 代碼如下:


$(document).ready(function () {

var rootboxs = document.getElementById("main");
var child = rootboxs.childNodes;
findchildbox(child)


});
//搜尋子節(jié)點(diǎn)
function findchildbox(parentNode) {

for (var i = 0; i < parentNode.length; i++) {
///
if (parentNode[i].nodeName == "BOX") {

var childboxId = parentNode[i].id;
var childboxTitle = encodeURI(parentNode[i].title);
var parentbox = findparentbox(parentNode[i].parentNode);
var parentboxId = parentbox.id;
if (window.XMLHttpRequest) {
//IE7 above,firefox,chrome^^
xmlhttp = new XMLHttpRequest();
//為了兼容部分Mozillar瀏覽器,當(dāng)來(lái)自服務(wù)器響應(yīng)開(kāi)頭不是xml,導(dǎo)致的無(wú)法響應(yīng)問(wèn)題
if (xmlhttp.overrideMimeType) {
xmlhttp.overrideMimeType('text/xml');
}
}
else if (window.ActiveXObject) {
//IE5\IE6
xmlhttp = new activeXObject("Microsoft.XMLHTTP");
}
if (xmlhttp == null || xmlhttp == undefined) {
alert("con't create XMLHttpRequest Object");
}
//注冊(cè)回調(diào)函數(shù)
xmlhttp.onreadystatechange = callback;
//發(fā)送信息

xmlhttp.open('GET', '../../Manager/RoleManager/AddBox.ashx?childboxId=' + childboxId + '&childboxTitle=' + childboxTitle + '&parentboxId=' + parentboxId, true);
xmlhttp.send(null);


function callback() {
//判斷交互是否完成,是否正確返回
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {

}
}

}

findchildbox(parentNode[i].childNodes)

}

}

//查詢(xún)父節(jié)點(diǎn)
function findparentbox(child) {

if (child.nodeName == "BOX") {
return child;
} else {
return findparentbox(child.parentNode)

}

}


3.存入數(shù)據(jù)庫(kù)中。

利用AJAX存入到數(shù)據(jù)庫(kù)中,一開(kāi)始就遇到了問(wèn)題,因?yàn)閽呙杞缑嫠枰臅r(shí)間太短在還沒(méi)有把第一條數(shù)據(jù)插入到數(shù)據(jù)庫(kù)的時(shí)候第二條數(shù)據(jù)就來(lái)了這樣導(dǎo)致了第一條數(shù)據(jù)的部分信息就會(huì)被第二條記錄替代了導(dǎo)致存入數(shù)據(jù)庫(kù)的數(shù)據(jù)出現(xiàn)了問(wèn)題。一開(kāi)始我是打算在JS那里加上個(gè)延遲,結(jié)果表名不行。然后我就在一班程序里面加入一個(gè)類(lèi)似鎖的一個(gè)東西,算作延遲吧這樣存入的數(shù)據(jù)就不會(huì)錯(cuò)誤了下面是代碼:

復(fù)制代碼 代碼如下:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using BLL.Manager.RoleUserManagerBLL;
using System.Data;
using System.Text;
using Model;
using BLL;

namespace ExamSystemV3.Manager.RoleManager
{
/// <summary>
/// AddBox 的摘要說(shuō)明
/// </summary>
public class AddBox : IHttpHandler
{

public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
System.Threading.Thread.Sleep(1000);
DIVEntity EDiv = new DIVEntity();
AdmDIVManager admDIVManager = new AdmDIVManager();
PublicBLL publicBll = new PublicBLL();
string strChildBoxId = "";
string strChildBoxTitle = "";

strChildBoxId = context.Request.QueryString["childboxId"].ToString().Trim();
strChildBoxTitle = context.Server.UrlDecode(context.Request.QueryString["childboxTitle"].ToString().Trim());
string strParentBoxId=context.Request.QueryString["parentboxId"].ToString ().Trim();;
string strState = "是";
string strDateTime = publicBll.GetDate();
string strIP = publicBll.GetWebClientIp();
string strOperator ="xvshu";//context.Session["UserNo"].ToString().Trim(); ;
EDiv.Id = strChildBoxId;
EDiv.MainRelation = strParentBoxId;
EDiv.DIVName = strChildBoxTitle;
EDiv.DIVDescribe = strChildBoxTitle;
EDiv.Operator = strOperator;
EDiv.OperatorIP = strIP;
EDiv.State = strState;
EDiv.DateTime = strDateTime;
admDIVManager.AddDIV(EDiv);
}

public bool IsReusable
{
get
{
return false;
}
}
}
}


利用TreeView控件顯示出來(lái)如下圖:
ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制

到此,關(guān)于“ASP.NET如何對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI