michael
michael

Reputation: 585

Can fileupload be worked without the form (enctype) in asp.net mvc

If i take the <% using (Html.BeginForm("Upload", "uploadfile", FormMethod.Post, new { enctype = "multipart/form-data" })) {%> //input type file <% } %> then it works fine. so, is there any other way of uploading file without the form tag.can we do this with jquery. correct me if I am wrong.

Upvotes: 0

Views: 286

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038940

Simple answer: no you cannot do this.

Upvotes: 2

Related Questions