zoukankan      html  css  js  c++  java
  • Building the DotNetNuke Module in Normal Asp.net Application CQ

    Supported by Nova Outsourcing

    Before writing the article, I have thought it a while that if it is necessary to share the way of building DotNetNuke Module in Normal Asp.net Application. This case may be rare or no body has ever plan to do it.

    It is marvellous to me that I run into this situation. The project was required to be developed in normal asp.net web form. Just in half way, it was required to be developed on the DotNetNuke framework. I felt disappointed at that time. But now I am survived from that situation. The list below are summarized from that situation.

    1. Create the folder structure that will be identical in the DNN deployment
    2. Inherit from the DNN base classes
    3. Multi-Lingual consideration

    Create the folder structure that will be identical in the DNN deployment

    Of course, we start from creating a normal Asp.net application project instead of the DNN module which is at the top. It is recommended that the project name would be identical to the module name in DNN.

    image

    After the project is created, you could remove the unused files/folders created by the project template. However, it would be no harm if you keep them in the project.

    Then we create the folders that is identical to the DNN deployment.

    image

    Then you place the asp.net user control and other files in the folder. After the user control has been created, you can put them to the Default.aspx to run instead of the DNN environment.

    This approach is quite useful when your module is quite complex that is broken to several user controls to carry out the business.

    Default.aspx

    <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
        CodeBehind="Default.aspx.cs" Inherits="TapechartingModule._Default" %>
    <%@ Register TagPrefix="ctrl" TagName = "tapechartControl" Src="~/DesktopModules/TapechartingModule/TapechartControl.ascx" %>
    <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    </asp:Content>
    <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
        <ctrl:tapechartControl ID="_tapechartControl" runat="server" />
    </asp:Content>
    

    So you can run the project directly for TapechartControl.ascx to debug and test the business. And you will find it is much easier than doing it in DNN environment.

    Inherit from the DNN base classes

    Conceptually speaking, the module can be shared with other normal asp.net application project. But our aim here is to put it in DNN site.

    Only several base classes from the DNN will be added. Here they are listed below.

    1. PortModuleBase
    2. IActionable
    3. ModuleSettingsBase

    Actually, if you just want to represent the data on the panel, you even don’t need to inherit ModuleSettingsBase to create the settings panel.

    Here is the sample code for TapechartControl. Please add reference to DotNetNuke.dll in your project as well.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using DotNetNuke.Entities.Modules;
    using DotNetNuke.Entities.Modules.Actions;
    
    namespace TapechartingModule
    {
        public partial class TapechartControl : PortalModuleBase, IActionable
        {
            protected void Page_Load(object sender, EventArgs e)
            {
    
            }
    
            public DotNetNuke.Entities.Modules.Actions.ModuleActionCollection ModuleActions
            {
                get
                {
                    ModuleActionCollection Actions = new ModuleActionCollection();
                    return Actions;
                }
            }
        }
    }
    

    Other code in the control would be normal asp.net C# code. So they are ignored here.

    Multi-Lingual consideration

    Although Multi-Lingual consideration is optional here, you can’t ignore it if it is required. Conceptually speaking, the multi-lingual is just one of features in globalization domain. However, DotNetNuke removes the implementation in normal asp.net application and builds its own implementation for globalization. So the following code in ascx will not work in DotNetNuke environment.

    <asp:Button ID="_addButton" runat="server" Text="<%$Resources:Add %>" />
    

    or

    <asp:Button ID="_addButton" runat="server" Text="Add" meta:resourceKey="Add" />
    

    The globalization in DotNetNuke is implemented as following.

    <asp:Button ID="_addButton" runat="server" Text="Add" resourcekey="Add" />
    

    If you dig into the DotNetNuke source code about Localization, you will find that its globalization involves portal information which explains why the implementation of globalization in DotNetNuke and normal Asp.net are essentially different.

    To implement the Multi-Lingual feature in both asp.net application and DotNetNuke, we would build a new expression builder. The code applying expression builder runs as following.

    <asp:Button ID="_addButton" runat="server" Text="$dic:Add %>" />

    Then you should create a dic.resx or dic.[region-code].resx and put it in the root/App_GlobalResources folder of the DotNetNuke site.

    Here I will not explain more about expression builder, you can refer the source code of dic in Dev3Lib project or the link at MSDN

    Eventually, you have to run the module in DotNetNuke environment, please refer to “Start to DotNetNuke Module Development: 2 and 3” if you have needs to debug in DotNetNuke environment.

    I am not sure if the above 3 points are best practice to make the user control work in both Asp.net application and DotNetNuke environment, I will appreciate any of your ideas on the solutions.

    Supported by Nova Outsourcing

  • 相关阅读:
    创建Graphics对象与Pen对象
    GDI+图形图像处理技术——GDIPlus绘图基础
    WPF的组成架构
    文件监控只FileSystemWatcher控件
    文件夹选择之FolderBrowserDialog控件
    SaveFileDialog控件
    文件选择之OpenFileDialog控件
    编码与解码
    写一个翻译小工具
    【转】字符集与字符编码简介
  • 原文地址:https://www.cnblogs.com/czy/p/2565581.html
Copyright © 2011-2022 走看看