2010-08-26 63 views

回答

10

爲此,您可以添加一個名爲singleTextBox CSS類,然後你就可以在你的樣式表中指定的寬度:

<%= Html.TextBoxFor(model => model.UserName, new { @class = "singleTextBox" }) %> 

在樣式表:

.singleTextBox { 
    width: 12em; 
} 
4

你也可以使用CSS樣式,其簡單和工作對我來說很好

@Html.TextBoxFor(model => model.UserName, new { style = "width: 250px;" }) 

got this id從達林的answer爲DropdownList寬度。

希望能幫助別人。