protected void Btn_impencuesta_Click(object sender, EventArgs e)
{
    string FilePath = MapPath("~/File/MyReport.pdf");
    iTextSharp.text.Document pdfDoc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4, 20f, 20f, 20f, 20f);
    PdfWriter.GetInstance(pdfDoc, new FileStream(FilePath, FileMode.Create));
    StringWriter sw = new StringWriter();
    HtmlTextWriter hw = new HtmlTextWriter(sw);
    gvTotal.AllowPaging = false;
    gvTotal.HeaderRow.Cells[1].Text = "Message";//Here i got the error :(
    gvTotal.HeaderRow.Font.Bold = true;
    gvTotal.RenderControl(hw);
    StringReader sr = new StringReader(sw.ToString());
    HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
    PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
    pdfDoc.Open();
    htmlparser.Parse(sr);
    pdfDoc.Close();
    Response.Write(pdfDoc);
    Response.ContentType = "Application/pdf";
    Response.WriteFile(FilePath);
    Response.End();
 }
this is the code of the button, i tried different ways to print this grid but i got always the same error.
 
     
    