1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| protected void btnPrint_Click(object sender, EventArgs e)
{
string pdf1 = CreatePDF();
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "print", string.Format("window.open('{0}','_blank','toolbar=no, menubar=no,location=no,status=no');", pdf1), true);
}
private string CreatePDF()
{
string id = string.Format("../../Upload/pdf/{0}.pdf", System.Guid.NewGuid().ToString());
string pdf = Server.MapPath(id);
Document document = new Document(PageSize.A4.Rotate(), 0f, 0f, 0f, 10f);
PdfWriter pw = null;
..................
return id;
} |
Partager