Hi
In asp.net mvc I always see the built in html helpers they always have object htmlAttirbutes.
Then I usually do new {@id = "test", @class="myClass"}.
How do I extract a parameter like this in my own html helpers?
Like I am using "HtmlTextWriterTag" is their a way I can pass this whole object to the writer and it figured it out or what?
Also how does this work with big html helpers?
Like I am making a html helper and it uses all these tags.
Table
thead
tfooter
tbody
tr
td
a
img
Does that mean I have to make a html Attribute for each of these tags?