(C#) ASP.NET & Pdf ในการส่งออก ASP.NET ในรูปแบบของ Pdf มี Component Library ให้เลือกใช้ได้หลายตัว แต่ผมเลือกใช้ของ PdfSharp เพราะมันสามารถใช้งานได้ฟรี และเป็น Open Source ด้วยครับ ดาวน์โหลด PdfSharp ได้ที่ http://www.icsharpcode.net/
Language Code : VB.NET || C#
ASP.NET Add Reference
Framework : 1,2,3,4
Instance NameSpace
VB.NETImports PdfSharp
C#Using PdfSharp;
AspNetPDF.aspx
<%@ Import Namespace="PdfSharp"%>
<%@ Import Namespace="PdfSharp.Drawing"%>
<%@ Import Namespace="PdfSharp.Pdf"%>
<%@ Import Namespace="PdfSharp.Pdf.IO"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
// Create a new PDF document
PdfDocument DocPDF = new PdfDocument();
// Create an empty page
PdfPage objPage = DocPDF.AddPage();
// Get an XGraphics object for drawing
XGraphics gfx = XGraphics.FromPdfPage(objPage);
// Create a font
XFont font = new XFont("Verdana", 20, XFontStyle.Bold);
// Draw the text
gfx.DrawString(" Hello, World!", font, XBrushes.Black,
new XRect(0, 0, objPage.Width.Point, objPage.Height.Point), XStringFormats.TopCenter);
// Draw the text
gfx.DrawString("Welcome To www.ThaiCreate.Com", font, XBrushes.Black,
new XRect(0, 0, objPage.Width.Point, objPage.Height.Point), XStringFormats.Center);
// Draw the text
gfx.DrawString("Version 2009", font, XBrushes.Black,
new XRect(0, 0, objPage.Width.Point, objPage.Height.Point), XStringFormats.BottomCenter);
// Save the document...
String FileName = "MyPDF/PdfDoc.pdf";
DocPDF.Save(Server.MapPath(FileName));
DocPDF.Close();
DocPDF = null;
this.lblText.Text = "PDF Created <a href=" + FileName + ">click here</a> to view";
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Send Mail</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="server"></asp:Label>
</form>
</body>
</html>
Screenshot
|