return View()相关简介
在asp.net mvc中返回View时使用的是ViewResult,它继承自ViewResultBase 同时它还有个兄弟PartialViewResult。一个用于返回整体,另一个返回局部(HTML)
使用相关
1、控制器书写:除最后改为 “return PartialView()” 其余无差别
2、视图书写:@Html.Partial() 具有四个重载。根据情况选用
@Html.Partial("CustomerListControl") 当这样写的时候查询所有文件名为 "CustomerListControl" 的文件,取第一个(按照字母升序排列)嵌套
@Html.Partial("CustomerListControl"); @*模糊查询web内指定文件,同名按照后缀首字母升序排列*@
@Html.Partial("/Views/Home/ViewUserControl.ascx"); @*指定 路径/文件*@
@Html.Partial("CustomerListControl", @Model);
@Html.Partial("CustomerListControl",ViewDataDictionary);@*ViewDataDictionary ViewData字典*@
@Html.Partial("CustomerListControl", @Model, ViewDataDictionary);
原文链接:http://www.cnblogs.com/Z-onee/p/6354516.html
时间: 2024-10-14 01:00:15