The problem is as follows, all data is displayed in a table.
There is a VNC button, everything is fine and it works
<td>@Html.ActionLink("VNC", "VNC", new { id = items.id })</td> I have a controller
public void VNC (int? id) { computer computer = db.computers.Find(id); Process.Start(@"C:\Program Files\RealVNC\VNC4\vncviewer.exe", computer.ipAdr); } But how to make sure that after clicking on the VNC button he did not try to open a new page by ID and leave the current page unchanged. Now happens as in the picture below.


@Ajax.ActionLink- Grundy