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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:52:36+00:00 2026-05-13T23:52:36+00:00

I have a View in which the user is able to upload a file

  • 0

I have a View in which the user is able to upload a file to the server.

In this view I also have 2 buttons: one to Upload a file and other to Download the last file imported.

In my Controller I created 2 action methods: Import and Export.

How could I manage to redirect each button click to the proper action method in my Controller?

I have tried Html.ActionLink:

<%= Html.ActionLink("Upload", "Import", "OracleFile")%>
<%= Html.ActionLink("Download", "Export", "OracleFile")%>

Html.ActionLink didn’t do the trick. The action links were taking me to the right Action methods but they were generating a GET request. This way Request.Files.Count = 0.

I need a POST request.

Note: the most intriguing part is that the upload was working and all of sudden it stopped working. I’ve seen that some people are having the same problem with FileUpload tasks in which the Request.Files is always Empty. I think it’s empty because you need a post to the server. Isn’t it?

  • 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-13T23:52:37+00:00Added an answer on May 13, 2026 at 11:52 pm

    maybe this will give u the idea:

    view:

    <form enctype="multipart/form-data" method="post" action="/Media/Upload/Photo">
        <input type="file" name="file" id="file" /> 
        <input type="submit"  name= "submitImport" value="Upload" />
        <input type="submit" name = "submitExport"  value="Download" />
    </form>
    

    controller:

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Action (FormCollection formCollection)
            {
                if (formCollection["submitImport"] != null)
                {
                    return Import(formCollection);
                }
                 if (formCollection["submitExport"] != null)
                {
                    return Export(formCollection);
                }
            }
    

    the Export and Import are the appropriateactions

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET MVC view which contains checkboxes for user-defined categories. <td><% foreach
I have a feature which allows the user to create projects and view it
I have a list view control which at the moment only allows one item
I have custom view in my application which can be scrolled by the user.
I have a view which contains a form, the form posts and the data
I currently have a list view which has several rows of data and I
I have an application, built using MVC, that produces a view which delivers summary
I have a View class (OrderView.aspx) which shows the details of an order (Account
I have a strongly-typed MVC View Control which is responsible for the UI where
I have quite a lot of PHP view files, which I used to include

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.