Can one specify inside an aspx page (without code-behind) only to display a user control if the logged in user has administrator rights?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 3 down vote accepted

I assume that you're talking about an ascx control, since there isn't any real integration of aspx pages in DotNetNuke.

Ideally this kind of permission would be configured in the module's settings, rather than hardcoded in. However, if that's not possible for whatever reason, you can check if the user is an administrator via the following code, which you can put in a code block in your ascx control (why can't you use a code-behind?):

UserInfo.IsInRole(PortalSettings.AdministratorRoleName)
link|improve this answer
feedback

The easiest thing to do, but this will only work if only administrators have edit rights for the module, is to add the following to the user control tag:

Visible="<%# IsEditable %>" 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.