我有一个上传文件的表单,服务器必须处理一个需要几分钟的大型操作。
我的代码:
.cshtml:
@using (Html.BeginForm("MyAction", "MyController", FormMethod.Post,
new { enctype = "multipart/form-data" }))
{
<input type="file" name="file"/>
<input type="submit" value="submit" />
}
控制器:
[HttpPost]
public ActionResult MyAction(HttpPostedFileBase file)
{
// Process a large operation here.
return View();
}
我知道可以使用web.config configuration和server code进行此操作 我的问题:是否可以使用客户端配置?
我问这是因为当使用像XMLHttpRequest
这样的jQuery.ajax
来设置超时时,可以用html表格标签做什么吗?