通用html控件和url助手哪里去了?
你知道那些看起来像这样的东西:
this.TextBox<MyInputModel>(model=>model.Name)
this.ActionLink<MyController>(controller=>controller.Index)
答案 0 :(得分:1)
这些是MvcFutures组装中的(我一直认为)。升级到已发布的版本时,需要更新到最新的MvcFutures。
答案 1 :(得分:1)
它们是位于程序集Micosoft.Web.MVC中的扩展。 您必须将此程序集添加到项目中,并在web.config文件中添加对它的引用。 您应该查阅以下答案以获取更多详细信息:Where to get Microsoft.Web.Mvc.dll
答案 2 :(得分:0)
它们应出现在通用视图中。即。
ViewPage<MyInputModel>
或通用用户控件
ViewUserControl<MyInputModel>
但应该阅读
html.TextBox(model=>model.Name)
请注意这是未经测试的代码。