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 9063041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:53:25+00:00 2026-06-16T15:53:25+00:00

I have a FileResult action that returns a PDF. I want to embed this

  • 0

I have a FileResult action that returns a PDF. I want to embed this PDF in an object tag. When I insert the action into the data attribute of the object tag, like below, no PDF is retrieved or shown in Chrome. (The PDF is shown in Firefox with the Adobe plugin – I don’t care about IE.)

<object data="@Url.Action("GetPDF", "PDFCreation", new {id= Model.DocumentId})" type="application/pdf"></object>

It all works otherwise – the object tag works with a direct link to a PDF on the file system (e.g., data=”~/Content/test.pdf”), and the Action above, if hard-pasted into the location bar, downloads the PDF.

Any thoughts? Thank you!

  • 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-16T15:53:27+00:00Added an answer on June 16, 2026 at 3:53 pm

    Fixed it via this answer: Returning a file to View/Download in ASP.NET MVC

    Had to append a content disposition header, and set the “Inline” value of the content disposition to true.

    var doc = ...
    var contentDisposition = new ContentDisposition
    {
        FileName = doc.FileName,
        Inline = true
    };
    
    Response.AppendHeader("Content-Disposition", contentDisposition.ToString());
    
    return File(doc.Path, MediaTypeNames.Application.Pdf);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a controller action that returns a FileResult like this return this.File(file.pdf, application/pdf);
I have an Action that returns a FileResult via View(...) . This works well.
Ok, so I have an action method that generates a PDF and returns it
I have a tag object that is loaded dinamically by javascript. This tag is
I have an asp.net mvc action that returns a file result. Behind the scenes,
I have a fileresult method in asp.net mvc4 that returns a report in an
MVC 3 RTM. I have an action that returns a file (image/jpeg). I am
Short version: I have a third-party MVC Extension that returns the FileResult. I would
I have a view that returns a pdf (using iTextSharp) with multiple pages, but
have written this little class, which generates a UUID every time an object of

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.