The following link loads a pop-up in my application. On Save from this i'd like to do a page refresh on the underlying data. So, i'd like to add to the link something like 'history.go(0);'
<%= Html.ActionLink("[EditImg]", "Edit",
new { id = item.SiteAgreementScheduleActionId },
new { id = "ActionEdit", rowid = item.SiteAgreementScheduleActionId })
.Replace(
"[EditImg]", "<img src='"
+ VirtualPathUtility.ToAbsolute("~/Content/images/page_white_edit.png")
+ "' alt='Edit Details' title='Edit Details'>"
)
%>
I realise I could use better approach to this solution but right now I just need to get the app working, postback n all
Many thanks in advance
J