我是靠谱客的博主 无心路灯,最近开发中收集的这篇文章主要介绍html.renderpartial 命名空间,Html.RenderPartial的三个参数的用法 用法实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

后台代码:

ViewBag.smallCategory = categoryService.LoadEntities(m=>m.ParentID==(short)Model.Enum.CategoryEnum.ProductTrade);

ViewData["Total"] = classInfoService.LoadEntities(m => m.Category.ParentID == (short)Model.Enum.CategoryEnum.ProductTrade).ToList().Count;

前台代码:

@{

var data = new ViewDataDictionary();

data.Add("total", ViewData["Total"]);

Html.RenderPartial("../Category/SmallCategory", ViewBag.smallCategory as IEnumerable, data);

}

绑定的页面代码:

@model IEnumerable

@{

Layout = null;

}

 @Html.ViewData["total"] 条信息

  • 所有分类
  • 全部

@foreach (var item in Model)

{

@item.CName

}

最后

以上就是无心路灯为你收集整理的html.renderpartial 命名空间,Html.RenderPartial的三个参数的用法 用法实例的全部内容,希望文章能够帮你解决html.renderpartial 命名空间,Html.RenderPartial的三个参数的用法 用法实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部