People, I have a problem, I need to go from the Details view to the DetailsController server, process something and then return to the Details view, but I need to show the content that I processed in a new DetailsPrint window, any ideas on how to do it?
It is mandatory for me to go to the server, so these methods do not work for me
@Html.ActionLink("linkText", "Action", new {controller="ControllerName"}, new {target="_blank"})
or
<button onclick="location.href='@Url.Action("Edit", "Home",new { Model.ID })';return false;">Detail</button>
<input type="button" title="Delete" value="D" onclick="location.href='@Url.Action("Edit", "Home", new { id = item.ID })'" />
dont work for me