【发布时间】:2011-06-10 05:19:47
【问题描述】:
我有
public ActionResult Index()
{
ViewBag.TotalRecords = _tabmasterService.Count();
return View(_tabmasterService.GetTabMasterList(10, 1));
}
现在在 Index.cshtml 中
@Html.Label("Set from controller", Convert.ToString(ViewBag.TotalRecords))
但这会给我一个错误。
编译器错误消息:CS1973:“System.Web.Mvc.HtmlHelper”没有名为“Label”的适用方法,但似乎具有该名称的扩展方法。扩展方法不能动态调度。考虑强制转换动态参数或调用扩展方法而不使用扩展方法语法。
【问题讨论】:
-
请编辑问题并向其添加错误消息,而不是评论。
标签: asp.net asp.net-mvc