Is there anyway to disable the cache when using Ajax.ActionLink. Im having problems in IE whereby If I remove an item, which uses an ajax actionlink, it then reloads the partial view which the item is contained, and the item re-appears there (even tho it has been removed) On other browser's it works fine and as intended
@Ajax.ActionLink("x", "RemoveItem", new { id = item.QuoteLineID, enquiryId = item.EnquiryID }, new AjaxOptions()
{
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "Summary"
}, new { @class = "delete-link" })