protected void ShowContentPageDetail()
        {
            bool   valid          = true;
            string ContentPage_Id = Request.QueryString["id"];

            if (String.IsNullOrEmpty(ContentPage_Id))
            {
                valid = false;
            }

            //We will attempt to get the record we need
            if (valid)
            {
                CMSDB       db = new CMSDB();
                ContentPage ContentPage_Record = db.GetContentPageById(Int32.Parse(ContentPage_Id));
                contentpage_title.InnerHtml       = ContentPage_Record.Title;
                contentpage_body.Text             = ContentPage_Record.Body;
                contentpage_publishdate.InnerText = ContentPage_Record.PublishDate.ToString("D");
            }
            else
            {
                valid = false;
            }

            if (!valid)
            {
                contentpage_body_panel.InnerHtml = "There was an error finding that Content Page.";
            }
        }