Listing 1: Datei iX-ModuleList.ascx <%@ Import Namespace="DotNetNuke" %> <%@ Control Language="c#" Inherits="DotNetNuke.PortalModuleControl"%> --------------------------------------- Listing 2: Installationsdatei iX-ModuleList Anzeige aller installierten Module 01.00.00 iX Module List iX-ModuleList.ascx View iX-ModuleList.ascx --------------------------------------- Listing 3: Speichern von Einstellungen void EinstellungSpeichern (string name, string wert) { ModuleController controller = new ModuleController(); controller.UpdateModuleSetting(this.ModuleID, name, wert); } string EinstellungLesen (string name) { return this.Settings[name].ToString(); } --------------------------------------- Listing 4: Eigene Vorlagen <%@ Control language="vb" CodeBehind="~/admin/Skins/skin.vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Skin" %> <%@ Register TagPrefix="dnn" TagName="Menü" Src="~/admin/Skins/Menü.ascx"%> <%@ Register TagPrefix="dnn" TagName="Login" Src="~/admin/Skins/Login.ascx"%>

---------------------------------------------------------- Listing 5: CSS Styles /* ================================ CSS STYLES FOR DotNetNuke ================================ */ /* PAGE BACKGROUND */ /* background color for the header at the top of the page */ .HeadBg {} /* background color for the content part of the pages */ Body {} /* background/border colors for the selected tab */ .TabBg {} .LeftPane { } .ContentPane { } .RightPane { } ... ------------------------------------ !!! Dateiende