If a html helper takes a idictionary as a parameter, how do I use it?
I tried:
<%= Html.Blah( new { id = "blah" }) %>
But that doesn't work.
<%= Html.Blah( new Dictionary<string, object>(){
{ "key", "value" },
{ "key1", someObj },
{ "blah", 1 }
} );