PDF Export Header and Footer Images headed papaer

Last post 07-24-2009, 10:11 AM by buckd. 1 replies.
Sort Posts: Previous Next
  •  07-24-2009, 9:46 AM 54246

    PDF Export Header and Footer Images headed papaer

    Hi I am using your excellent control for our company probation system to auto generate lettters however their is graphics within the cut editor which are not being copied over to the pdf document which is exported.
     
    Is their a way to get images to stick to the top and bottom of the documents first page to act like headed papaer
  •  07-24-2009, 10:11 AM 54247 in reply to 54246

    Re: PDF Export Header and Footer Images headed papaer

    This is the code to which i use to create the pdf export I hope this is right but i dont no why the image is not being carried over
     

    Dim filename As String

    Dim folder As String

    Dim empid As Int16

    empid = Request.QueryString("empid")

    folder = Request.QueryString("rtype")

    filename = "docs/" + folder + "/" + Request.QueryString("prob").ToString() + ".pdf"

    Response.Write(filename)

    Editor1.SavePDF(filename)

    Response.ContentType = "Application/pdf"

    Response.WriteFile(MapPath(filename))

    ' Response.Redirect("updateprob.aspx?prob=" + Request.QueryString("prob"))

    Response.End()

View as RSS news feed in XML