Asp.net mvc4用iframe实现异步上传
发表于:2024-11-26 作者:热门IT资讯网编辑
编辑最后更新 2024年11月26日,1. Model层用一个TestModel(与上一篇博文的TestModel 相同)2. Controller层: public class TestController : Controller {
1. Model层用一个TestModel(与上一篇博文的TestModel 相同)
2. Controller层: public class TestController : Controller { //这是iframe页面的action public ActionResult IframeView() { return View(); } public ActionResult View2() { return View(); } ///@Html.EditorFor(mod => mod.Title)
@Html.LabelFor(mod => mod.Content)
@Html.EditorFor(mod => mod.Content)
上传文件
} 别一个是View2 @{ Layout = null; }