protected void btnPdf_Click(object sender, EventArgs e)
 {
     Response.Clear();
     Response.AddHeader("content-disposition", "attachment;filename=DocumentReport.pdf");
     Response.Charset = "";
     Response.Cache.SetCacheability(HttpCacheability.NoCache);
     Response.ContentType = "application/pdf";
     System.IO.StringWriter       stringWrite = new System.IO.StringWriter();
     System.Web.UI.HtmlTextWriter htmlWrite   = new HtmlTextWriter(stringWrite);
     GvUser.RenderControl(htmlWrite);
     Response.Write(stringWrite.ToString());
     Response.End();
 }