Click here to Skip to main content
15,896,269 members
Articles / Web Development / ASP.NET

Eucalypto - ASP.NET CMS Library using NHibernate

Rate me:
Please Sign up or sign in to vote.
4.84/5 (36 votes)
10 Jun 2009MIT24 min read 321.5K   4.6K   260  
An ASP.NET server library for creating CMS website (forums, articles/wiki, news, users/roles, ...), using NHibernate for data access.
using System;
using System.Data;
using System.Configuration;
using System.Collections.Generic;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Controls_ViewTopic : System.Web.UI.UserControl
{
    protected void Page_Load(object sender, EventArgs e)
    {
        LoadTopic();
    }

    #region Properties
    /// <summary>
    /// Gets or sets the topic id to show. The value is saved in the ViewState.
    /// </summary>
    public string IdTopic
    {
        get
        {
            object val = ViewState["IdTopic"];
            return (string)val;
        }
        set { ViewState["IdTopic"] = value; }
    }
    #endregion

    private void LoadTopic()
    {
        Eucalypto.Forum.Topic topic = Eucalypto.Forum.ForumManager.GetTopic(IdTopic);
        Eucalypto.Forum.Category forum = topic.Category;

        if (Eucalypto.SecurityHelper.CanRead(Page.User, forum, null) == false)
            throw new Eucalypto.InvalidPermissionException("read forum");

        IList<Eucalypto.Forum.Message> messages = Eucalypto.Forum.ForumManager.GetMessagesByTopic(topic);

        ExploreMessages(forum, topic, messages, null, 0);
    }

    private void ExploreMessages(Eucalypto.Forum.Category forum, Eucalypto.Forum.Topic topic,
                        IList<Eucalypto.Forum.Message> messages, string filterParent, int level)
    {
        foreach (Eucalypto.Forum.Message msg in messages)
        {
            if (string.Equals(msg.IdParentMessage, filterParent, StringComparison.InvariantCultureIgnoreCase))
            {
                Controls_ViewMessage ctlMessage = (Controls_ViewMessage)LoadControl("~/Controls/ViewMessage.ascx");
                ctlMessage.SetMessage(msg);
                ctlMessage.SetIndentLevel(level);

                Controls.Add(ctlMessage);

                ExploreMessages(forum, topic, messages, msg.Id, level + 1);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions