Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <a href="@Url.Action("RunReport", "Performance", new { reportView = Model.ReportView.ToString() }, new { target = "_blank" })" type="submit" id="runReport" class="button Secondary">@Reports.RunReport</a>
  2.  
  3. <a href="@Url.Action("RunReport", "Performance", new { reportView = Model.ReportView.ToString() })"
  4. type="submit"
  5. id="runReport"
  6. target="_blank"
  7. class="button Secondary">
  8. @Reports.RunReport
  9. </a>
  10.  
  11. @Html.ActionLink(Reports.RunReport, "RunReport", new { controller = "Performance", reportView = Model.ReportView.ToString() }, new { target = "_blank" })
  12.  
  13. <a href="@Url.Action("RunReport", "Performance",
  14. new { reportView = Model.ReportView.ToString() })",
  15. target = "_blank" type="submit" id="runReport" class="button Secondary">
  16. @Reports.RunReport
  17. </a>
  18.  
  19. @Html.ActionLink("Report View", "RunReport", null, new { target = "_blank" })
  20.  
  21. @Html.ActionLink("New tab please", "Home", null , new { target = "_blank" })
  22.  
  23. @Html.ActionLink("New tab please", "Home", Nothing, New With {Key .target = "_blank"})
  24.  
  25. @Html.ActionLink(linkText: "TestTab", actionName: "TestAction", controllerName: "TestController", routeValues: null, htmlAttributes: new { target = "_blank"})
  26.  
  27. <a target="_blank" class="btn" data-ng-href="@Url.Action("RunReport", "Performance")?hotelCode={{hotel.code}}">Select Room</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement