取决于角色的 ASP.NET C# 超链接
我的网站设置了两个不同的角色,当然还有匿名角色。 我有一个超链接供登录用户转到他们的帐户页面,但我希望每个角色的相同超链接都不同。例如
,如果角色是管理员,我希望链接“我的帐户”转到 admin/myaccount.aspx 如果角色是卖家,我希望链接“我的帐户”转到 seller/myaccount.aspx
我已使用链接按钮并计划将 ifs 添加到 C#,但我不确定如何根据角色创建 if 任何想法吗?
标记
I have my Site set up with 2 different roles and then of course the anonymous one.
I have a hyperlink for logged in users to go to their account page but I want the same hyperlink to be different for each role. For Example
If the role is Admin I want the Link "My Account" to go to admin/myaccount.aspx
If the role is seller I want the Link "My Account" to go to seller/myaccount.aspx
I have used a link button and plan on adding ifs to the C# but im unsure how to make an if based on the roles any idea?
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设表单身份验证 -
有关 IsInRole 的详细信息:http: //msdn.microsoft.com/en-us/library/system.security.principal.iprincipal.isinrole.aspx
Assuming Forms Authentication -
More info on IsInRole: http://msdn.microsoft.com/en-us/library/system.security.principal.iprincipal.isinrole.aspx
ASP.NET 的两种方法,使用 HyperLink 控件:
Two approaches with ASP.NET, using HyperLink control: