vote up 1 vote down star
3

i try Request.Files, HttpContext.Request.Files but got no luck

html form:

 <form name="" method="post" enctype="mulitipart/form-data">
     <input type="file" name="file" />
 </form>
flag

46% accept rate

6 Answers

vote up 1 vote down check

In your question you have a type-o. If that was in the final code, it would cause an issue. It's "multipart/form-data" not "mulitipart/form-data".

link|flag
vote up 2 vote down

The simplest way to handle a file in the controller is to use the HttpPostedFileBase type:

public ActionResult ImportWaypointList(HttpPostedFileBase file)
{
    // Do things with the file here

    return View();
}
link|flag
vote up 0 vote down

Velio, I have my form tag coming from masterpage, so, what is the solution?

link|flag
vote up 0 vote down

Most probably you have another form on the page comming from your master(s) and using the standard ASP.NET form with runat='server'. I had same issue when a form with runat='server' exists on the page.

Hope this helps, Regards

link|flag
vote up 2 vote down

Request.Files should do it.

Scott Hanselman has a little blog post about this

   foreach (string file in Request.Files)  
    {  
       HttpPostedFile hpf = Request.Files[file] as HttpPostedFile;  
       if (hpf.ContentLength == 0)  
          continue;  
       string savedFileName = Path.Combine(  
          AppDomain.CurrentDomain.BaseDirectory,   
          Path.GetFileName(hpf.FileName));  
       hpf.SaveAs(savedFileName);  
    }
link|flag
vote up 0 vote down

Did you try ControllerContext.HttpContext.Request.Files?

link|flag
tried too .......... – StoneHeart Dec 17 '08 at 16:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.