Calibre2010
Calibre2010

Reputation: 3849

Having a class and ID together in an HTMLHelper method. ie. Text

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

Answers (1)

Amitabh
Amitabh

Reputation: 61187

<%= Html.TextBox("myID", "text_goes_here", new {@class = "className"}) %>

Upvotes: 2

Related Questions