I have this helper in my view:
<%= Html.StandardOverlayCreateButton<EmployeeController>()%>
It creates the following HTML:
<a rel="#overlay" href="/Employee/Create">
<button type="button">
Create</button>
</a>
I do not like this anyway.
Any suggestions :) ?
I also askmyself when to create html helper extension and when just write the pure HTML code?