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.0How to Programmically add skinHow to Programmically add skin
Previous
 
Next
New Post
8/12/2006 12:18 AM
 
i want to programmically add skins for the members of my site.  but i'm having a problem.

        Private ReadOnly Property FirstPlaceHolder() As PlaceHolder
            Get
                Return CType(Me.Parent.Parent.Parent.Parent.Parent.Parent, PlaceHolder)
            End Get
        End Property
.
.
.
                    If String.IsNullOrEmpty(PersonalPage.Profile.GetPropertyValue("SkinSrc")) Then
                        ctlSkin = LoadSkin(User.Constants.DEFAULT_SKINSRC)
                    End If

                    ctlSkin.ID = "dnn"
                    FirstPlaceHolder.Controls.Add(ctlSkin)


i know FirstPlaceHolder is the skinplaceholder on the default.ascx page.  but it keeps timing out in my page init.  what's the problem?


 
New Post
8/12/2006 1:49 AM
 
I'm not sure if this will be helpfull but you can set a skin to the tab this way:
   
   string SkinName = "[L]Skins/YourSkinName/SkinLayout.ascx";
   DotNetNuke.Entities.Tabs.TabController objTabController = new DotNetNuke.Entities.Tabs.TabController();
   DotNetNuke.Entities.Tabs.TabInfo objTabInfo = new DotNetNuke.Entities.Tabs.TabInfo();
   objTabInfo = objTabController.GetTab(TabId);
   objTabInfo.SkinSrc = SkinName
   objTabController.UpdateTab(objTabInfo);

Jakub

Get quality skins at Coohya.com
 
New Post
8/12/2006 3:48 PM
 
i ended up changing the default.apx.vb

            ' OTBRadio ADDED
            If Not (Request.QueryString("userid") Is Nothing) Then
                Dim personalPageUserID As Integer = Int32.Parse(Request.QueryString("userid"))
                Dim objUser As UserInfo = UserController.GetUser(0, personalPageUserID, False)
                Dim skinSrc As String = objUser.Profile.GetPropertyValue("SkinSrc")

                If String.IsNullOrEmpty(skinSrc) Then
                    PortalSettings.ActiveTab.SkinSrc = SkinController.FormatSkinSrc("/Portals/_default//skins/personalpage/default.ascx", PortalSettings)
                    ctlSkin = LoadSkin(PortalSettings.ActiveTab.SkinSrc)
                Else
                    PortalSettings.ActiveTab.SkinSrc = SkinController.FormatSkinSrc(skinSrc & ".ascx", PortalSettings)
                    ctlSkin = LoadSkin(PortalSettings.ActiveTab.SkinSrc)
                End If
            End If


 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0How to Programmically add skinHow to Programmically add skin


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