gpt4 book ai didi

c# - MVC 和 EditorFor 宽度

转载 作者:IT王子 更新时间:2023-10-29 04:22:44 27 4
gpt4 key购买 nike

我可以在我的 View 上设置 EditorFor 控件的宽度吗?

我设置了几个参数:

[Required, DisplayName("Payee Name"), StringLength(50)]
public string Name { get; set; }

但是,我似乎无法设置呈现的文本框的宽度。

<table width="300" border="0" cellpadding="3" cellspacing="0">
<tr>
<td>
<%=Html.LabelFor(m => m.Name)%>
</td>
<td>
<%=Html.EditorFor(m => m.Name)%>
</td>
</tr>

这能以某种方式完成吗?

我试过:

<%=Html.EditorFor(m => m.Name, new {width=50)%>

但没有快乐......

最佳答案

使用 TextBoxFor 代替 EditorFor:

<%=Html.TextBoxFor(m => m.Name, new {style = "width:50px"})%>

关于c# - MVC 和 EditorFor 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4720909/

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