gpt4 book ai didi

asp.net-mvc - 如何禁用@Html.EditorFor

转载 作者:行者123 更新时间:2023-12-03 08:32:16 24 4
gpt4 key购买 nike

我的 asp.net mvc web 应用程序中有以下内容:-

<div><span class="f">Data Center Name</span> @Html.EditorFor(model => model.Switch.TMSRack.DataCenter.Name, new  { disabled = "disabled" })</div>

但该领域不会被禁用,任何人都可以请教吗?
谢谢

最佳答案

@Html.EditorFor()没有支持 htmlAttributes 的重载。你可以试试 @Html.TextBoxFor()

@Html.TextBoxFor(model => model.propertyName, new {disabled= "disabled" })

如果您使用系统关键字如 class在 htmlAttributes 中请添加 @在属性名称之前。

前任:
@Html.TextBoxFor(model => model.propertyName, new {@class = "disabledClass" })

关于asp.net-mvc - 如何禁用@Html.EditorFor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19703753/

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