Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ログに記録された管理者だけのために、リンクを表示する必要があるか、フォームである可能性があります。
たとえば、次のようにします。
<%if(IsAdmin()){%> <div> <a href="" src="BrowseAll"> Show all orders </a> <div/> <%}%>
次のチェックを使用できます
if (HttpContext.Current.Request.IsAuthenticated && HttpContext.Current.User.IsInRole("Administrators"))