3
我試圖創造小數和整數類型簡單的自定義編輯模板:MVC編輯模板小數和整數
@ModelType Decimal?
@Html.NumericBoxFor(Function(m) m)
和
@ModelType Integer?
@Html.NumericBoxFor(Function(m) m)
救了他們的〜/查看/共享/EditorTemplates/Decimal.vbhtml和〜/ Views/Shared/EditorTemplates/Integer.vbhtml(也試過Int32.vbhtml)。
但是我的自定義HtmlHelper函數永遠不會被調用。搜索網絡後,嘗試很多事情無法弄清楚..這裏有什麼問題?
我剛剛在應用程序中發現了一個自定義的ViewEngine,它已經搞砸了路徑(通過global.asax定義)。刪除它解決了這個問題。 – fan711
你可以發表你的評論作爲答案嗎? – McGarnagle