I need to render a lot of content inside ajax action link – between <a ...> and </a>.
How can I render ajax action link without closing </a> tag?
For example:
@Ajax.ActionLinkWithNoClosingTag(....)
<image ... />
<span ... />
@Html.Partial(...)
</a>
AFAIK you need a helper like the Helper.BeginForm() one. Maybe without the IDisposable feature, but with the hability of include other elements inside.
I recommend you to look to this SO question and adapt it to your needs.