MVC @Html.ActionLink
Edit, if you run a compliance program like JAWS, just says "Edit" visual it is fine, but if you are doing a find as a visual impaired person. Thousands of "Edits" doesn't help you understand where you're at. I need the compliance program to say "Edit CustomerX", but keep visual real estate down to just "Edit". Same goes for Delete and Details.
I have tried using hidden labels, but didn't work. I was thinking titles would do it, but didn't see any results, and read an article that title attributes are bad. Still looking for more arguments on this.
Bad for 508 searching Normal setup:
@Html.ActionLink("Edit", "Edit", new { id = item.CustomerID })
Doesn't work hidden labels:
@Html.ActionLink("Edit", "Edit", new { id = item.CustomerID })
<label class="hidden">  @item.CustomerName  </label>
Trying to find pros and cons:
@Html.ActionLink("Edit", "Edit", new { id = item.ApplicationID }, new{ title="Edit " + item.CustomorName })
not sure how well this works though.