protected void Page_Load(object sender, EventArgs e)
        {
            facade = new BusinessLogic.BusinessFacade(myConn);

            CollectionPager1.MaxPages = 10000;
            CollectionPager1.PageSize = 5;
            CollectionPager1.DataSource = facade.View_TestimonialArticle();
            CollectionPager1.BindToControl = repeater_Content;
            repeater_Content.DataSource = CollectionPager1.DataSourcePaged;
            repeater_Content.DataBind();

            //File reader
            string filepath = Server.MapPath("~/UserData/template/Testimonial.txt");
            if (File.Exists(filepath))
            {
                StreamReader reader = new StreamReader(filepath);
                literal_stickyText.Text = reader.ReadToEnd().Replace(Environment.NewLine, "<br />");
            }

            //Limit input characters
            txt_body.Attributes.Add("onkeydown", "textCounter(this,'" + Label1.ClientID + "', 5000)");
            txt_body.Attributes.Add("onkeyup", "textCounter(this,'" + Label1.ClientID + "', 5000)");
            txt_body.Attributes.Add("onmousedown", "textCounter(this,'" + Label1.ClientID + "', 5000)");
            txt_body.Attributes.Add("onmouseup", "textCounter(this,'" + Label1.ClientID + "', 5000)");
            txt_body.Attributes.Add("onblur", "textCounter(this,'" + Label1.ClientID + "', 5000)");
        }