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

  • Home
  • SEARCH
  • 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 6009389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:57:49+00:00 2026-05-23T01:57:49+00:00

public ActionResult GetAttachment1(string projectID) { return File(~/Uploads/Project, application/pdf, projectID); } this code gives an

  • 0
 public ActionResult GetAttachment1(string projectID)
        {

                return File("~/Uploads/Project", "application/pdf", projectID);

        }

this code gives an error……

  • 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-05-23T01:57:50+00:00Added an answer on May 23, 2026 at 1:57 am

    You need to specify an absolute path to the File method. Use Server.MapPath to convert a relative into an absolute path:

    public ActionResult GetAttachment1(string projectID)
    {
        string projectPath = Server.MapPath("~/Uploads/Project");
        string file = Path.Combine(projectPath, projectID);
        // at this stage file will look something like this 
        // "c:\inetpub\wwwroot\Uploads\Project\foo.pdf". Make sure that
        // this is a valid PDF file and pass it to the File method
    
        return File(file, "application/pdf", projectID);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple piece of code public ActionResult ListToGrid(string field, string direction) {
This simple code: [HttpPost] public ActionResult Check(string chosen_username, string email) { var lang =
[AcceptVerbs(HttpVerbs.Post)] public ActionResult Upload(Photo photo) { foreach (string file in Request.Files) { var path
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have this in HomeController : public ActionResult Details(string id) { var customer =
I have the following code: public ActionResult SomeAction() { return new JsonpResult { Data
[AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit( string id_stud) { ViewData[stud] = id_stud; return View(temp); } temp.aspx:
In our code base public ActionResult Copy(string id, string targetId) { //lot of similar
Consider the following code: public ActionResult Index(String URLQuery = http://www.google.com) { HttpWebRequest webRequest; HttpWebResponse
public ActionResult DoSomething() { return View(Index, new IndexModel { Foo = new List<string>() {

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.