我已将iTextSharp添加到"项目> ...添加参考"并将它们添加到使用:
using iTextSharp.text;
using iTextSharp.text.html.simpleparser;
using iTextSharp.text.pdf;
我在#34; GridView1.RenderControl(hw);"行获得了错误代码。
如何添加runat ="服务器"通过Gridview和HtmlTextWriter:
Control 'MainContent_GridView1' of type 'GridView' must be placed inside a form tag with runat=server.
Button1_Click代码:
protected void Button1_Click(Object sender,System.EventArgs e)
{
string connStr = ConfigurationManager.ConnectionStrings["PDFMDF"].ConnectionString;
DataSet ds = new DataSet();
try
{
string cmdStr = "SELECT * FROM [GridviewTable];";
using (SqlConnection conn = new SqlConnection(connStr))
{
using (SqlCommand cmd = new SqlCommand(cmdStr, conn))
{
conn.Open();
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
da.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
}
conn.Close();
cmd.Dispose();
conn.Dispose();
}
}
}
catch (Exception ex)
{
TextBox1.Text = ex.ToString();
}
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=this.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
GridView1.AllowPaging = false;
GridView1.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
Document PDFdoc = new Document(PageSize.A4, 10.0F, 10.0F, 10.0F, 0.0F);
iTextSharp.text.html.simpleparser.HTMLWorker htmlparser = new iTextSharp.text.html.simpleparser.HTMLWorker(PDFdoc);
PdfWriter.GetInstance(PDFdoc, Response.OutputStream);
PDFdoc.Open();
htmlparser.Parse(sr);
PDFdoc.Close();
Response.Write(PDFdoc);
Response.End();
}
答案 0 :(得分:0)
您可以在标记代码中执行此操作。实施例
<asp:GridView ID="GridView1" runat="server">
答案 1 :(得分:0)
在我的标记中已经准备好代码runat =“ server” 将此代码添加到您的源代码中
public override void VerifyRenderingInServerForm(Control control)
{
return;
}
它解决了问题