Why does the following code:
<%= Html.ActionLink("[Click Here For More +]", "Work", "Home", new { @class = "more" }) %>
render as:
<a class="more" href="/Home/Work?Length=4">[Click Here For More +]</a>
Where is that "Length=4" coming from?
Update
If I remove the new { @class = "more" }
, I don't get that Length=4 parameter.