Basicaly I want a button that opens a page in a new window containing my http://fake.com/Report/PageFixes...
page. Currently I have a button in a form but if there is a better way to do it then I'm up for that too.
<% using (Html.BeginForm("PageFixes", "Report", new { id = 9 }, FormMethod.Get, new { onSubmit="window.open()" })) %>
<% { %>
<%= Html.CSButton(new ButtonViewData() { Text = "Submit" })%>
<% } %>
Thank you,
Aaron