gpt4 book ai didi

c# - Html.TextBoxFor 中的必需值

转载 作者:技术小花猫 更新时间:2023-10-29 11:13:58 25 4
gpt4 key购买 nike

我需要像这样输入 TextBox 的值:

<td>@Html.TextBoxFor(m =>(m.Code), new { @required  = "required"})</td>

它有效。但是,如果我将默认值设置为 TextBox

<td>@Html.TextBoxFor(m =>(m.Code), new { @Value = @Model.Code, @required  = "required"})</td>

尽管生成了此 Html 代码,但仍接受空值

<td><input id="Code" name="Code" required="required" type="text" value="fff       "></td>
  1. 这个问题的根源是什么?
  2. 我该如何解决?

最佳答案

我不知道为什么,但是当我删除 =@ 之间的空格时

<td>@Html.TextBoxFor(m =>(m.Code), new { @Value =@Model.Code, @required  = "required"})</td>

有效

关于c# - Html.TextBoxFor 中的必需值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21179266/

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