ASP.Net 母版页中的权限

发布于 2024-08-07 00:24:22 字数 57 浏览 5 评论 0原文

我在我的网站中使用母版页。当用户登录时,应根据用户权限启用或禁用母版页的ASP菜单按钮。我该怎么做?

I'm using Master page in my website. When the user logged in, the ASP menu button of the master page should be enabled or disabled according to the user permission. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

完美的未来在梦里 2024-08-14 00:24:22

在母版页 Page_Load 事件中检查用户是否登录,然后启用或禁用菜单按钮
根据用户的许可。

In master page Page_Load event check if user logged in then enable or disable menu button
according to the user permission.

心意如水 2024-08-14 00:24:22

在母版页后面的代码中声明一个公共方法,该方法将加载用户权限并启用或禁用菜单按钮。

在母版页代码后面。

Public void EnableMenuBar() {
 //.... Load user permissions here.
 //.... here make menu bar enable or disable. 
}

然后在母版页的默认构造函数的末尾进行此调用。

Declare a public method in the code behind of your master page which will load user permissions and enable or disable menu button.

In Master Page code behind.

Public void EnableMenuBar() {
 //.... Load user permissions here.
 //.... here make menu bar enable or disable. 
}

Then make this call in the end of your default constructor for your master page.

娇纵 2024-08-14 00:24:22

谢谢大家!
我找到了解决方案......代码:Menu1.Items[3].Enabled=False

Thank U Everybody!
I found the solution for it..... Code: Menu1.Items[3].Enabled=False

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文