ASP.Net 母版页中的权限
我在我的网站中使用母版页。当用户登录时,应根据用户权限启用或禁用母版页的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在母版页 Page_Load 事件中检查用户是否登录,然后启用或禁用菜单按钮
根据用户的许可。
In master page Page_Load event check if user logged in then enable or disable menu button
according to the user permission.
在母版页后面的代码中声明一个公共方法,该方法将加载用户权限并启用或禁用菜单按钮。
在母版页代码后面。
然后在母版页的默认构造函数的末尾进行此调用。
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.
Then make this call in the end of your default constructor for your master page.
谢谢大家!
我找到了解决方案......代码:Menu1.Items[3].Enabled=False
Thank U Everybody!
I found the solution for it..... Code: Menu1.Items[3].Enabled=False