I am trying to use HTML5 data- attributes in my ASP.
NET MVC 1 project. (I am a C# and ASP.
NET MVC newbie.)
<%= Html.ActionLink("« Previous", "Search",
new { keyword = Model.Keyword, page = Model.currPage - 1},
new { @class = "prev", data-details = "Some Details" })%>
The "data-details" in the above
…