PdfWebControlLiteRenderHead Method (TextWriter) |
Namespace: RadPdf.Web.UI
This method does not conisder any value assigned to BasePath.
using System.Web; using RadPdf.Web.UI; public class RadPdfSampleHandler : IHttpHandler { public RadPdfSampleHandler() { } public void ProcessRequest(HttpContext context) { //Get reference to Request and Response objects HttpRequest Request = context.Request; HttpResponse Response = context.Response; //Get PDF as byte array from file (or database, browser upload, remote storage, etc) byte[] pdfData = System.IO.File.ReadAllBytes(Server.MapPath(@"pdfs\RadPdfSampleForm.pdf")); //Create PdfWebControlLite instance PdfWebControlLite PdfWebControlLite1 = new PdfWebControlLite(); PdfWebControlLite1.ID = "PdfWebControlLite1"; //Open PDF document PdfWebControlLite1.CreateDocument(pdfData); //Start generate HTML Response.Write("<html>"); Response.Write("<head>"); Response.Write("<title>Example</title>"); //Insert PdfWebControlLite HEAD (max once per page) PdfWebControlLite.RenderHead(Response.Output); Response.Write("</head>"); Response.Write("<body>"); //Insert PdfWebControlLite HTML PdfWebControlLite1.RenderControl(Response.Output); Response.Write("</body>"); Response.Write("</html>"); } public bool IsReusable { // To enable pooling, return true here. // This keeps the handler in memory. get { return false; } } }