I want to pass htmlAttributes as parameter to my HtmlHelper similar as it created in Html.ActionLink("linktext", "Home", null, new{width="100px"}) How to pass this new{width="100px"} to my method
public static string SelectCategoryAdminWithAllItem(this HtmlHelper htmlHelper, string name, **???**)
{ }
and how to parse it?
Thanks