forumdatalistcontrol.cs

来自「community server 源码」· CS 代码 · 共 74 行

CS
74
字号
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
//     Copyright (c) Telligent Systems Corporation.  All rights reserved.
// </copyright> 
//------------------------------------------------------------------------------

using System.Web.UI;using System.Web.UI.WebControls;using CommunityServer.Components;namespace CommunityServer.Discussions.Controls.BaseClasses 
{

    [
    ParseChildren(true)	
    ]
    public abstract class ForumDataListControl : DataList 
    {
        User user = null;
        string skinName = null;

        public ForumDataListControl() 
        {

            // Attempt to get the current user
            user = CSContext.Current.User;

            // Is the user not availabe - must be anonymous
            //            if (user == null)
            //                Users.TrackAnonymousUsers();


                skinName = user.Theme;

        }

        // *********************************************************************
        //  ForumUser
        //
        /// <summary>
        /// Returns an instance of User or null if the user is not logged in.
        /// </summary>
        // ***********************************************************************/
        protected User ForumUser 
        {
            get 
            {
                return user;
            }
        }
        
        // *********************************************************************
        //  SkinName
        //
        /// <summary>
        /// Used to construct paths to images, etc. within controls.
        /// </summary>
        /// 
        // ********************************************************************/ 
        protected string SkinName 
        {
            get 
            {
                return skinName;
            }
            set 
            {
                skinName = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?