asp.net mvc - How to add new css class in @Html.TextBox mvc4 -


i have used following code add css class @html.textbox working @html.textboxfor , not @html.textbox.

@html.textbox("ticket_new_attachment_attributes_0_description", new { @class= "bigfield"}) 

what missing?

try this

@html.textbox("ticket_new_attachment_attributes_0_description", null, new { @class= "bigfield"}) 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -