我在我的 mvc asp.net 项目中使用 DevExpress 控件。这是视图代码:
<div>
@Html.DevExpress().TextBox(settings =>
{
settings.Name = "TextBox";
settings.Width = 170;
settings.Properties.DisplayFormatString = "[ 00 - 00 - 00 ]";
settings.Text = "123456";
}).GetHtml()
</div>
这是错误消息:
Unable to cast the object type "System.Web.Mvc.HtmlHelper` 1 [System.Object]" to
type "System.Web.Mvc.HtmlHelper"
我无法理解我的代码在哪里失败,因为它是来自 DevExpress 演示的示例代码。