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"))