I need to have an image instead of clickable text and using MVC helpers. Trying the following in vain, also tried toying with MvcHtmlString.Create() which gives an error:
@Ajax.ActionLink(Url.Content("~/Content/extremepc/rightarrow.png"), "Index", "Store", new { category = Model.category, page = Model.PagingInfo.CurrentPage + 1 },
new AjaxOptions
{
UpdateTargetId = "Everything",
Url = Url.Action("StoreContent", "Store", new { category = Model.category, page = Model.PagingInfo.CurrentPage + 1 })
})