I use the following to create a form to upload images on a mobile site.
@using (Html.BeginForm(\"Form/\", \"Quote\", FormMethod.Post, new { enctype = \"multipa
You can use another overload:
@using (Html.BeginForm("Form", "Quote", FormMethod.Post, new Dictionary { { "enctype", "multipart/form-data" }, { "data-ajax", "false"} }))