I have a results list from a search in MVC which shows rows of data, with an action link.
@Html.ImageLink(Url.Content("~/Content/Images/view.png"), "New Window", "PoPupDetails", "QuickSearch", new { id = item.WardshipCaseID }, new { target = "_self" }, null)
This link calls a public ActionResult PoPupDetails(int id)
.
with return View("PopupDetails", model);
and a popup opens but it replaces the current form/page.
My question is how do i open a popup using my actino link keeping the same window. I want to close the popup and still see the list of results from my search.