Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Getting StartedGetting StartedAdd Content to HTML Module ProgrammaticallyAdd Content to HTML Module Programmatically
Previous
 
Next
New Post
11/24/2010 3:31 PM
 
I have the following code... It creates a new child page, then adds a text/html module to the page... I am trying to figure out how to populate the html module with content programmatically

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click


            Dim tabCntrl As New TabController()
            Dim tabInfo As New TabInfo()


            Dim tabInfoParent As New TabInfo
            tabInfoParent = tabCntrl.GetTab(tabInfo.ParentId, PortalId, True)


            With tabInfo
                .ParentId = 93
                .PortalID = PortalId
                .TabName = "civic"
                .Title = "my tab title"
                .Description = "my description"
                .KeyWords = "my keywords"
                .IsDeleted = False
                .IsSuperTab = False
                .IsVisible = True
                .DisableLink = False
                .IconFile = ""
                .Url = ""


            End With


            Dim intNewTabID As Integer
            intNewTabID = tabCntrl.AddTab(tabInfo)


            SetPermission()
            AddModuleHTMLMod()


            DataCache.ClearTabsCache(PortalId)


        End Sub


        Protected Sub SetPermission()
            Dim tabController As New DotNetNuke.Entities.Tabs.TabController()
            Dim infPermission As New DotNetNuke.Security.Permissions.TabPermissionInfo()
            Dim permissionProvider As DotNetNuke.Security.Permissions.PermissionProvider = DotNetNuke.Security.Permissions.PermissionProvider.Instance()


            With infPermission
                .AllowAccess = True
                .RoleID = -1
                .TabID = TabId
                .PermissionID = 3
            End With


            Dim tabInfo As DotNetNuke.Entities.Tabs.TabInfo = tabController.GetTabByName("civic", Me.PortalId)


            Dim permissions As DotNetNuke.Security.Permissions.TabPermissionCollection = tabInfo.TabPermissions
            permissions.Add(infPermission, True)


            permissionProvider.SaveTabPermissions(tabInfo)


        End Sub


        Protected Sub AddModuleHTMLMod()
            Dim moduleCntrl As New ModuleController()
            Dim moduleInfo As New ModuleInfo()


            Dim tabCntrl As New TabController()
            Dim tabInfo As New TabInfo()


            Dim intPage As Integer


            tabInfo = tabCntrl.GetTabByName("civic", Me.PortalId)


            intPage = tabInfo.TabID()


            With moduleInfo
                .ModuleTitle = "TEST MODULE"
                .PortalID = PortalId
                .TabID = intPage
                .PaneName = "ContentPane"
                .ModuleDefID = "108"
                .DisplayPrint = False
                .DisplaySyndicate = False
                .IsDeleted = False
                .InheritViewPermissions = True
                .DisplayTitle = False
                .Visibility = VisibilityState.None
            End With


            moduleCntrl.AddModule(moduleInfo)


            DataCache.ClearModuleCache(TabId)


        End Sub
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Getting StartedGetting StartedAdd Content to HTML Module ProgrammaticallyAdd Content to HTML Module Programmatically


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out