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.
NET4.0 では、さまざまなアクセス レベルに基づいて、web.site (例: 新しいユーザーとパラメーター) からいくつかのメニューを非表示にする方法を知りたいです。
i asp.net メンバーシップとロール プロバイダーを読むことをお勧めします。これらのリンクに従ってください
Asp.net メンバーシップとロール プロバイダー
asp.net の役割とメンバーシップのチュートリアル
このようなもの。MSDN から取得したコード
if (!Roles.IsUserInRole(User.Identity.Name, "Administrators")) { Label1.Text = "You are not Adminstrator , not authorized to view user roles."; yourMenu.Visible = false; }