Ejemplo n.º 1
0
 protected void btnDeletePdfFile_Click(object sender, EventArgs e)
 {
     Stories ss = new Stories();
     if (ss.DeletePdfFile(LangCode, GroupID))
     {
         ImageButton btnDeletePdfFile = this.DetailsViewEditItem.FindControl("btnDeletePdfFile") as ImageButton;
         if (btnDeletePdfFile != null)
         {
             btnDeletePdfFile.Visible = false;
         }
         Button b = this.DetailsViewEditItem.FindControl("PdfName") as Button;
         if (b != null)
         {
             b.Visible = false;
         }
     }
 }