无法将对象类型“System.Web.Mvc.HtmlHelper` 1 [System.Object]”转换为“System.Web.Mvc.HtmlHelper”

Posted

技术标签:

【中文标题】无法将对象类型“System.Web.Mvc.HtmlHelper` 1 [System.Object]”转换为“System.Web.Mvc.HtmlHelper”【英文标题】:Unable to cast the object type "System.Web.Mvc.HtmlHelper` 1 [System.Object] "to type" System.Web.Mvc.HtmlHelper " 【发布时间】:2014-01-29 08:00:58 【问题描述】:

我在我的 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 演示的示例代码。

【问题讨论】:

查看此链接***.com/questions/12288625/… 【参考方案1】:

链接的 Ty,Nitin Varpe。我将此部分添加到我的主 web.config 中:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="4.0.0.0" />
    </dependentAssembly>
</assemblyBinding>
</runtime>

【讨论】:

以上是关于无法将对象类型“System.Web.Mvc.HtmlHelper` 1 [System.Object]”转换为“System.Web.Mvc.HtmlHelper”的主要内容,如果未能解决你的问题,请参考以下文章

C# 无法将类型为“System.Byte[]”的对象强制转换为类型“System.Data.DataTable

无法将 java.lang.String 类型的对象转换为类型 - FirebaseUI

无法将 Person 类型的对象转换为 PersonViewModel 类型

无法将对象转换为实体类型

无法将 java.lang.String 类型的对象转换为 com.example 类型

无法将类型为“Word.ApplicationClass”的 COM 对象强制转换为接口类型“Word._Application”