vote up 0 vote down star

In the case that the user doesn't have Javascript activated, in order to draw a form, I begin this way:

<% using (Html.BeginForm("Create", "Language", FormMethod.Post,
    new {enctype="multipart/form-data"}))
{ %>

If the user has Javascript activated, the following code is used:

<% using (Ajax.BeginForm("Create", "Language",
    new AjaxOptions { UpdateTargetId = "CommonArea" },
    new { enctype = "multipart/form-data" }))
{ %>

The problem is this:

In the first case, I can get the file uploaded using the following instruction in the business layer:

// Get the uploaded file
HttpPostedFile Flag = HttpContext.Current.Request.Files["Flag"];

In the second case, this instruction doesn't work. How do I know upload that file using the Ajax.BeginForm? Is the code right? Can anyone more experience advise about using jQuery plug-in to upload file before the form submission?

Thank you

flag

58% accept rate

1 Answer

vote up 1 vote down check

You can't do a file upload using AJAX alone. Many (most?) asynchronous uploaders use a dynamically created, hidden iframe containing a form that posts back to the server normally. I'd suggest looking through the jQuery plugin repository for "ajax upload" and seeing if you can find a plugin that will work for you that will do the upload using a combination of javascript and an iframe.

link|flag

Your Answer

Get an OpenID
or

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