我目前正在使用abcPDF 7将
HTML转换为PDF.这是通过ASPX页面完成的,我覆盖了Render方法.
Doc theDoc = new Doc(); theDoc.SetInfo(0,"License",m_License ); theDoc.HtmlOptions.Paged = true; theDoc.HtmlOptions.Timeout = 1000000; string callUrl = "http:// my app page"; theDoc.AddImageUrl(callUrl); Response.Clear(); Response.Cache.SetCacheability(HttpCacheability.Private); Response.AddHeader("Content-Disposition","attachment; filename=" + sFile + ".pdf"); Response.ContentType = "application/octet-stream"; theDoc.Save(Response.OutputStream); Response.Flush();
有人知道为什么它会在页面后停止吗?