Re: PDF Export Header and Footer Images headed papaer

  •  07-24-2009, 10:11 AM

    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 Complete Thread