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

YaBlogEngine - A Tiny Blog Engine written in ASP.NET/C#

Rate me:
Please Sign up or sign in to vote.
4.94/5 (20 votes)
9 Feb 2012CPOL4 min read 108.7K   6.5K   47  
YaBlogEngine is a Tiny Blog Engine written in ASP.NET/C#
using System;
using System.Data;
using System.Configuration;
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;
using YABlog.DAL;

namespace YABlog.BLL
{
    public class EntriesAction
    {
        EntriesDb entDb = new EntriesDb();
        CategoriesDb catDb = new CategoriesDb();
        CommentsDb comDb = new CommentsDb();

        public EntriesAction()
        {

        }

        public bool InsertEntry(string catName, string sub, string body)
        {
            return entDb.AddEntry(catDb.GetCategoryIdByName(catName), sub, body);
        }

        public bool UpdateEntry(int id, string catName, string sub, string body)
        {
            return entDb.UpdateEntry(id, catDb.GetCategoryIdByName(catName), sub, body);
        }

        public void GetEntryList(Repeater rep)
        {
            rep.DataSource = entDb.GetEntryList();
            rep.DataBind();
        }

        public int GetEntriesCount(int Cat_id)
        {
            int count = 0;
            if (Cat_id == -1)
            {
                count = entDb.GetEntryList().Rows.Count;
            }
            else
            {
                count = entDb.GetEntryListByCategoryId(Cat_id).Rows.Count;
            }
            return count;
        }

        public EntryBO GetEntryDetails(int id)
        {
            DataTable table = entDb.GetEntryDetails(id);

            EntryBO bo = new EntryBO();

            bo.ID = (int)table.Rows[0]["id"];
            bo.CAT_ID = (int)table.Rows[0]["Cat_id"];
            bo.Body = table.Rows[0]["Body"].ToString();
            bo.Subject = table.Rows[0]["Subject"].ToString();
            bo.Date = Convert.ToDateTime(table.Rows[0]["Date"].ToString());
            bo.Category = (string)catDb.GetCategoryNameById(bo.CAT_ID);

            return bo;
        }

        public DataTable GetEntryListByCategoryId(int id)
        {
            return entDb.GetEntryListByCategoryId(id);
        }
    }
}

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 Code Project Open License (CPOL)


Written By
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions