{ -6ren">
gpt4 book ai didi

c# - 无法转换对象类型 "System.Web.Mvc.HtmlHelper` 1 [System.Object] "to type"System.Web.Mvc.HtmlHelper "

转载 作者:太空狗 更新时间:2023-10-29 20:13:36 27 4
gpt4 key购买 nike

我在我的 mvc asp.net 项目中使用 DevExpress 控件。这是 View 的代码:

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

最佳答案

链接很重要,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>

关于c# - 无法转换对象类型 "System.Web.Mvc.HtmlHelper` 1 [System.Object] "to type"System.Web.Mvc.HtmlHelper ",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21042755/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com