protected void Page_Load(object sender, EventArgs e)
        {
            Lrbd.Business.Cms objcms = new Lrbd.Business.Cms();

            GridView1.DataSource = objcms.getallCms();
            GridView1.DataBind();
        }
 protected void Button1_Click(object sender, EventArgs e)
 {
     Lrbd.BusinessEntity.CmsBase objcms = new Lrbd.BusinessEntity.CmsBase();
     objcms.title = CMSTitle.Text;
     objcms.contents = CMSDescription.Text;
     Lrbd.Business.Cms objcm = new Lrbd.Business.Cms();
     objcm.addCms(objcms);            
     
     Response.Redirect("Cmslisting.aspx");
 }