Hi I cannot figure out how to open a new plain browser window without any browser controls and with specific dimensions. I tried the following but it doesn't work, more accurately it still opens a regular browser window with controls.
@Html.ActionLink("New Window", "Index", new {Controller="controller"}, new { target= "_blank, toolbar=0, location=0, menubar=0 " })
I'd say you have to use JavaScript in order to do so:
Then do a
in your MVC Controller.
Or just insert the Url in the HTML Link above.