I have an ASP.Net MVC application. I would like to create a view that lists the contents of a simple collection and show it in a new browser window.
Is there a way to show a view in a new browser window using a simple link?
I have struck out with Html.ActionLink. The Url.Action below does result in the Controller action being called but does not open in a new browser window.
Open MVC View in New Browser.
Is opening a view in a new browser window possible in MVC?
If so, does anyone know how?