MVC5 razor
The link below results in a new view in a new browser tab to allow selection of a data item, while keeping the first tab open.
@Html.ActionLink("Select a data item", "ItemDisplay", "<controller>", New With {.ID = Model.ID}, htmlAttributes:=New With {.target = "_blank"})
Once the desired data item is clicked on, can I close the new tab on the way back to the application? How do I do that?