Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9324671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T04:39:26+00:00 2026-06-19T04:39:26+00:00

I need to create a pdf from .aspx, but without using wkHtmlToPdf or iTextSharp,

  • 0

I need to create a pdf from .aspx, but without using wkHtmlToPdf or iTextSharp, because they need the url from the page and it dosen’t work to me because I have security in my site so when I try to print the site it send me to default page.

Someone has any idea how can I do it?

Thank you in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-19T04:39:28+00:00Added an answer on June 19, 2026 at 4:39 am

    I use EvoPdf so my solution is going to be different to yours, but I ran into the same problem with an app (vb.net unfortunately) using forms authentication. My solutions was as follows. The key piece was setting the cookie of the Pdf library to those of the authenticated account.

    Private Sub uiPdf_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles uiPdf.Click
    
        Dim urlToConvert As String = "ExportPdf.aspx"
    
        '// get the html string for the report
        Dim htmlStringWriter As New System.IO.StringWriter()
        Server.Execute(urlToConvert, htmlStringWriter)
        Dim htmlCodeToConvert As String = htmlStringWriter.GetStringBuilder().ToString()
        htmlStringWriter.Close()
    
    
        '// Create the PDF converter. 
        Dim pdfConverter As New EvoPdf.HtmlToPdf.PdfConverter()
    
        '************
        'Add the cookie so we don't get bounced to the home page
        '************ 
        If Not Request.Cookies(System.Web.Security.FormsAuthentication.FormsCookieName) Is Nothing Then
            pdfConverter.HttpRequestCookies.Add(System.Web.Security.FormsAuthentication.FormsCookieName, Request.Cookies(System.Web.Security.FormsAuthentication.FormsCookieName).Value)
        End If
    
        '// set the license key - required
        pdfConverter.LicenseKey = ConfigurationManager.AppSettings("EvoPdfLicenseKey")
    
        '// set the converter options - optional
        '... code omitted
    
        '// be saved to a file or sent as a browser response
        Dim baseUrl As String = HttpContext.Current.Request.Url.AbsoluteUri
        Dim pdfBytes As Byte() = pdfConverter.GetPdfBytesFromHtmlString(htmlCodeToConvert, baseUrl)
    
        '// send the PDF document as a response to the browser for download
        Dim response As System.Web.HttpResponse = System.Web.HttpContext.Current.Response
        Response.Clear()
        Response.AddHeader("Content-Type", "application/pdf")
        response.AddHeader("Content-Disposition", String.Format("attachment; filename=GettingStarted.pdf; size={0}", pdfBytes.Length.ToString()))
        response.BinaryWrite(pdfBytes)
        response.End()
    
    
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create a pdf from .aspx page. In .aspx page user will
I am using wkhtmltopdf to create PDF reports from HTML, I need to create
I need to create pdf document which outputs all rows from mysql table, but
I'm using xslt to create onscreen pdf's from xml and I need to hide
I need to create a PDF or Word file filled with contents from my
I need to create a pdf file from the HTML provided from database which
I'm New to Fpdf library, i need to create a pdf from data base
I am doing a website using php , i need create a pdf doc
We're using aspose.word to create a report from a word template direct to PDF
I need to create a pdf file from data obtained from a database. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.