iframe上传文件
接上篇:Ajax的最大特点就是无刷新(实际上是跳转),因此楼主想通过模拟Ajax的方式进行文件上传,也就是iframe上传文件
话不多说,直接上代码
HTML:
<iframe name="send" style="display:none"></iframe> <form action="/home/receiveAjax/" target="send" method="post" enctype="multipart/form-data">
<input type="text"/>
<input type="file" name="file" id="file" />
<input type="submit"/>
</form>
C#:
[HttpPost]
public ActionResult receiveAjax(string s1)
{
HttpPostedFileBase file = Request.Files[];
return Content("Success");
}
后台代码和上篇是一样的,如果将<iframe name="send" style="display:none"></iframe>显示出来的话,还可以看到后台代码的返回值"Success",而且有错误的话,还能通过返回的iframe中的错误进行调试
这个上传方式最大的特点是没有一行javascript代码
到此,本篇结束,如有问题,欢迎指正