Display PDF Fillable Form Without using Adobe

Malam Malam 266 Reputation points
2022-02-09T14:03:24.173+00:00

Is there a way to bring up a fillable pdf form in asp.net without using Adobe?
My user will not have Adobe Reader but I still want them to view and fill it.

Developer technologies ASP.NET Other
{count} votes

4 answers

Sort by: Most helpful
  1. Malam Malam 266 Reputation points
    2022-02-09T15:13:25.523+00:00

    I have the following code that supposed to download Adobe Reader automatically but it does not work; I get "Initializing..." forever.

            string embed = "<object data=\"{0}\" type=\"application/pdf\" width=\"500px\" height=\"300px\">";
            embed += "If you are unable to view file, you can download from <a href = \"{0}\">here</a>";
            embed += " or download <a target = \"_blank\" href = \"http://get.adobe.com/reader/\">Adobe PDF Reader</a> to view the file.";
            embed += "</object>";
    

  2. Malam Malam 266 Reputation points
    2022-02-14T16:49:46.297+00:00

    Actually, I just need the link "http://get.adobe.com/reader" clicked automatically and download if it is already not installed.


  3. Malam Malam 266 Reputation points
    2022-02-14T20:03:36.52+00:00

    We should be able to download it using a hidden button programmatically clicked in code behind. It is just like a button click event without user interaction.


  4. Malam Malam 266 Reputation points
    2022-02-14T21:22:43.353+00:00

    That makes sense...

    Any link to a site where I can find a simple asp.net code that will let export asp page to pdf?


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.