Click here to Skip to main content
15,891,431 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 320.2K   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;
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 NewsDetails : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (IsPostBack == false)
        {
            string id = Request["id"];

            //Edit
            if (id != null)
            {
                Eucalypto.News.Category category = Eucalypto.News.NewsManager.GetCategory(id);

                txtName.Enabled = false;

                txtName.Text = category.Name;
                txtDisplayName.Text = category.DisplayName;
                txtEditPermissions.Text = category.EditPermissions;
                txtReadPermissions.Text = category.ReadPermissions;
                txtDeletePermissions.Text = category.DeletePermissions;
                txtInsertPermissions.Text = category.InsertPermissions;
                txtDescription.Text = category.Description;

            }
            else //New
            {
                txtEditPermissions.Text = Eucalypto.SecurityHelper.NONE;
                txtReadPermissions.Text = Eucalypto.SecurityHelper.ALL_USERS;
                txtDeletePermissions.Text = Eucalypto.SecurityHelper.NONE;
                txtInsertPermissions.Text = Eucalypto.SecurityHelper.AUTHENTICATED_USERS;
            }
        }
    }

    protected void btSave_Click(object sender, EventArgs e)
    {
        try
        {
            string id = Request["id"];

            Eucalypto.News.Category category;

            //Edit
            if (id != null)
            {
                category = Eucalypto.News.NewsManager.GetCategory(id);

                category.DisplayName = txtDisplayName.Text;

            }
            else //New
            {
                category = Eucalypto.News.NewsManager.CreateCategory(txtName.Text, txtDisplayName.Text);
            }

            category.EditPermissions = txtEditPermissions.Text;
            category.ReadPermissions = txtReadPermissions.Text;
            category.DeletePermissions = txtDeletePermissions.Text;
            category.InsertPermissions = txtInsertPermissions.Text;
            category.Description = txtDescription.Text;

            Eucalypto.News.NewsManager.UpdateCategory(category);


            Navigation.Admin_NewsList().Redirect(this);

        }
        catch (Exception ex)
        {
            ((IErrorMessage)Master).SetError(GetType(), ex);
        }
    }

    protected void btCancel_Click(object sender, EventArgs e)
    {
        Navigation.Admin_NewsList().Redirect(this);
    }
}

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