在asp.net mvc中,文件上传可以在没有表单(enctype)的情况下工作吗
如果我使用 <% (Html.BeginForm("Upload", "uploadfile", FormMethod.Post, new { enctype = "multipart/form-data" })) {%> //输入类型文件 <% } %>
然后就可以了 工作正常。 那么,有没有其他方法可以在没有表单标签的情况下上传文件。我们可以使用 jquery 来做到这一点吗? 如果我错了请纠正我。
If i take the <% using (Html.BeginForm("Upload", "uploadfile", FormMethod.Post, new { enctype = "multipart/form-data" }))
then it
{%> //input type file
<% } %>
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的回答:不,你不能这样做。
Simple answer: no you cannot do this.