There are nice extension methods to generate ActionLinks/RouteLinks in ASP MVC. However it only lets you write plain text inside the generated tag. What if you want to generate anchor with image inside?
I wanted to create links using the icons from bootstrap:
// expected result
<a href="/Customer?page=1"><i class="glyphicon glyphicon-arrow-left"></i> Previous page</a>
When you want to generate simple link, you can use @Url.Action() like this:
<a href="@Url.Action("Index","Customer", new{ page = 1 })"><i class="glyphicon glyphicon-arrow-left"></i> Previous page</a>
But when you want to generate ajax links, it's not so simple. Because @Ajax.ActionLink generates anchor with javascript or 'data-*' atributes that are handled by jquery-unobtrusive-ajax-min.js library.
So I wrote for my purpose extension methods to generate ActionLinks/RouteLinks in way you use @Html.BeginForm/@Ajax.BeginForm (surrounded by using).
Usage:
Methods BeginActionLink return instance of class MvcLink which implements IDisposable. In constructor it writes start tag and when disposed it writes end tag. Between curly brackets there is place for your code
Then it's up to you to write extension methods for HtmlHelper and AjaxHelper. There are too many overloads for method ActionLink/RouteLink so I prepared just those that I realy use in my application.
But it's easy to write others. You can see that I create instance of MvcLink, it takes ViewContext as first parameter and the result of builtin ActionLink with predefined InnerText that will be replaced by your content.