Reputation: 3849
I saw this implemented somewhere but basically below I'm using the textbox HTMLHelper to draw a textbox with the id myID and default text 'text_goes_here'. I want to also add a class to thiis helper, i saw somewhere it implemented with new {@class =''} as a third parameter creating an object but im not sure exactly how its wrote
<%= Html.TextBox("myID", "text_goes_here") %>
anyone?
Upvotes: 1
Views: 68
Reputation: 61187
<%= Html.TextBox("myID", "text_goes_here", new {@class = "className"}) %>
Upvotes: 2