@helper DisplayForm() { @Html.EditorForModel(); }
但是这会给出错误“CS0103:当前上下文中不存在该名称”Html“.
有没有办法引用网络助手中的html助手?
@helper MyHelper() { var Html = ((System.Web.Mvc.WebViewPage)WebPageContext.Current.Page).Html; Html.RenderPartial("WhatEver"); @Html.EditorForModel(); }