asp.net-mvc How to change width Html.TextBox

前端 未结 5 1470
遥遥无期
遥遥无期 2020-12-31 01:25

how do you change the width of a textbox in an asp.net-mvc View

i want to have these fields side by side and the state textbox much shorter width

            


        
5条回答
  •  轮回少年
    2020-12-31 02:06

    You can use the TextBox helper to add any arbitrary attibutes to your textbox. For instance:

    
    <%= Html.TextBox( "state", null, new { size = "10" } ) %>
    

    Will render something like:

    
    
    

提交回复
热议问题