Thursday, July 28, 2011

ASP.NET Crystal Reports Print Without Preview

สำหรับท่านที่เคยใช้งาน Crystal report บน ASP.Net คงประสบปัญหาเช่นเดียวกัน เมื่อกดปุ่ม Print บน tollbar ของ CrystalReportViewer จะเจอหน้าจอ Print ให้เลือกเครื่องพิมพ์ ทำให้ผู้ใช้งานไม่สะดวกในการใช้งาน 
จากบนทความ: ASP.NET Crystal Reports Export PDF เราไปเพิ่มปุ่ม Print แล้วใส่โค้ดดังนี้:
protected void btPrint_Click(object sender, EventArgs e)
{
    ReportDocument repDoc = this.Session["ReportSource"] as ReportDocument;
    Response.Buffer = false;
    Response.ClearContent();
    Response.ClearHeaders();
    repDoc.PrintToPrinter(1, true, 0, 0);

}

No comments:

Post a Comment