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

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Change Module (Container) TitleChange Module (Container) Title
Previous
 
Next
New Post
4/16/2008 11:24 PM
 

Although I had found a couple of prior threads showing how to change the title of a module's container in code during the Page_Init event of the mdoule control as follows:

ModuleConfiguration.ModuleTitle = "A Module With A Modified Title"

I really needed to do this in the Page_Load handler as module settings and ViewState values were not available in Page_Init.  After looking at a DNN page's view source and at the ContainerControl object in the debugger, I came up with the following two approaches which work equally well and chose #2 to use:

#1:

Dim titleSkinObject As Control = Me.ContainerControl.FindControl("dnnTitle")
If Not titleSkinObject Is Nothing Then
    Dim lblTitle As Control = titleSkinObject.FindControl("lblTitle")
    If Not lblTitle Is Nothing Then
         CType(lblTitle, Label).Text = "A Module With A Modified Title"
    End If
End If

#2:

Dim ctl As Control = DotNetNuke.Common.FindControlRecursiveDown(Me.ContainerControl, "lblTitle")
If Not ctl Is Nothing Then
     CType(ctl, Label).Text = "A Module With A Modified Title"
End If

Hope this helps some one looking to do the same.


Bill, WESNet Designs
Team Lead - DotNetNuke Gallery Module Project (Not Actively Being Developed)
Extensions Forge Projects . . .
Current: UserExport, ContentDeJour, ePrayer, DNN NewsTicker, By Invitation
Coming Soon: FRBO-For Rent By Owner
 
New Post
4/16/2008 11:35 PM
 

Thanks for sharing tip/trick.  I saw your post to fix FCKEditor value not saved in Settings page.  That was a great post too.  Keep it up.


Fuji Nguyen
FREE Visitor Hit Counter
Visit opensource.indyneinc.com for detail.
 
New Post
4/21/2008 6:10 PM
 

Thanks for the great post. Here is the code in C#:

Control ctl = Globals.FindControlRecursiveDown(this.ContainerControl, "lblTitle");
if ((ctl != null))
{
((Label)ctl).Text = "A Module With A Modified Title";
}

 
New Post
4/22/2008 10:15 AM
 

Bill,

Very handy piece of code!


-Mitchel Sellers
Microsoft MVP, ASPInsider, DNN MVP
CEO/Director of Development - IowaComputerGurus Inc.
LinkedIn Profile

Visit mitchelsellers.com for my mostly DNN Blog and support forum.

Visit IowaComputerGurus.com for free DNN Modules, DNN Performance Tips, DNN Consulting Quotes, and DNN Technical Support Services
 
New Post
5/9/2008 4:10 PM
 

GREAT!!!  I just needed this!  -- Figured it'd make my module look that much nicer!!!!  Thanks for posting!



Andrew Walker

Learn to make your own beer and wine at homeIf you enjoy making your own beer and/or wine - be sure to check out http://www.ForemostBrewing.com
 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Change Module (Container) TitleChange Module (Container) Title


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