码迷,mamicode.com
首页 > Web开发 > 详细

PartialView 在cshtml 用 @Html.Action() 和 @Html.Partial() 的区别

时间:2015-07-05 19:55:37      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:

controller cs

public ActionResult AdvanceSearchForm()
        {
            SearchCriteriaModel model = new SearchCriteriaModel { SearchInAll = true };
            return PartialView("AdvanceSearchForm", model);
        }

 

用法1 cshtml

@Html.Action("AdvanceSearchForm")

这种访问方式,先会去controller 执行AdvanceSearchForm 这个action ,然后再回到cshtml

 

用法2 cshtml

@Html.Partial("AdvanceSearchForm",new SearchCriteriaModel { SearchInAll = true })

这种访问方式,不会去controller ,而是直接到cshtml

 

PartialView 在cshtml 用 @Html.Action() 和 @Html.Partial() 的区别

标签:

原文地址:http://www.cnblogs.com/lavenvsxiaoye/p/4622801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!