3

我尝试为 Decimal 和 Integer 类型创建一个简单的自定义编辑器模板:

@ModelType Decimal?
@Html.NumericBoxFor(Function(m) m)

@ModelType Integer?
@Html.NumericBoxFor(Function(m) m)

将它们保存为 ~/Views/Shared/EditorTemplates/Decimal.vbhtml 和 ~/Views/Shared/EditorTemplates/Integer.vbhtml(也尝试过 Int32.vbhtml)。

但是我的自定义 HtmlHelper 函数永远不会被调用。在网上搜索并尝试了很多东西后无法弄清楚..这里有什么问题?

4

1 回答 1

1

我刚刚发现在应用程序中有一个自定义 ViewEngine,它搞砸了路径(通过 global.asax 定义)。删除它可以解决问题。

于 2012-11-22T03:24:42.723 回答