Subscribe to my RSS feed
|
|
HowTo: Programmatically Hide a DotNetNuke Module
I needed to programmatically hide a DotNetNuke module today and I couldn't find any examples of how to do it. So here's how to do it. This hides the entire module, including the container and title.
In your Page_Init method in your code-behind, use this little baby:
ContainerControl.Visible = false;
| Comments | Currently, there are no comments. Be the first to post one! Click here to post a comment |
|