2016-10-25 89 views

回答

2

看一看at the docs(或智能感知),你會看到可用重載 嘗試

@Html.TextBox("Imie", null, new { @class = "boxx" }) 
1

你可以嘗試下面的代碼:

@Html.TextBox("Imie", null, new { @class = "boxx" }) 

第3個值爲HTML屬性。

希望它解決了您的問題。

感謝

1

,你也可以嘗試內聯CSS,如果你想

@Html.TextBox(x => x.testBox, new { style = "width: 20px;" })