gpt4 book ai didi

asp.net-mvc - 在 Razor View 中有条件地禁用文本框

转载 作者:行者123 更新时间:2023-12-04 00:34:12 25 4
gpt4 key购买 nike

这是一个快速的问题。

@Html.TextBoxFor(model => model.VIN, string.IsNullOrEmpty(Model.VIN) ? new { @class = "required Vin" } : new { @disabled = "disabled" })

我收到无法确定表达式类型的错误,因为没有隐式转换匿名类型 #1 和匿名类型 #2。

有没有办法有条件地禁用文本框?

最佳答案

尝试类似的东西

 @Html.TextBoxFor(model => model.VIN, string.IsNullOrEmpty(Model.VIN) ? new { @class = "required Vin" } : (object)new { disabled = "disabled" })

关于asp.net-mvc - 在 Razor View 中有条件地禁用文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26303647/

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