protected void GvSectionRowCommand(object sender, GridViewCommandEventArgs e)
 {
     if (e.CommandName.Equals("Insert"))
     {
         var mName = GvSection.FooterRow.FindControl("ftrSectionName") as TextBox;
         if (mName != null && !string.IsNullOrEmpty(mName.Text.Trim()))
         {
             PageDataService.AddSectionByEntityFrameWork(mName.Text);
         }
         Response.Redirect(Request.RawUrl);
     }
 }