Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,

I'm having troubles uploading a file from my Android phone (Samsung Galaxy S3) to a jQuery Mobile enabled MVC4 webapplication. When I select the file from the gallery and submit it, the browser loads for some time (less than a minute), then the browser shut's down (phone goes to homescreen).

If I try uploading it from a normal browser(IE/Chrome) everything works fine.

HTML code:
C#
@using (Html.BeginForm("Save", "Account", FormMethod.Post, new { enctype = "multipart/form-data", data_ajax = "false", name = "form1" }))
{
   <input type="file" name="fotofile" value="" /> (max 4MB)
   <input type="submit" value="Save" data-theme="c" data-ajax="false" id="btnSave" />
}


C# code:
XML
public ActionResult Save(Profielen profiel, string email, List<string> profielwaardeID, HttpPostedFileBase fotofile, string Notificatieontvangen)
{
    AccountModel mod = new AccountModel();

    mod.SaveProfiel(profiel, email, profielwaardeID, fotofile, Notificatieontvangen);

    return RedirectToAction("Index", "Account");
}


Anyone got some suggestions?
Posted
Comments
Christian Graus 10-Jan-13 15:31pm    
Can you add some logging code to see if the save method gets called ? Are you sure the file is small ? Try a tiny file.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900