Index.cshtml 652 B

123456789101112131415161718192021222324252627
  1. @{
  2. ViewBag.Title = "Index";
  3. }
  4. @section scripts{
  5. <script type="text/javascript" language="javascript">
  6. $('#btnAddWork').click(function () {
  7. $.ajax({
  8. url: "/Api/Queue",
  9. type: 'POST',
  10. success: function (data, textStatus, jqXHR) {
  11. alert('Success');
  12. },
  13. error: function (jqXHR, textStatus, errorThrown) {
  14. alert("Error");
  15. }
  16. });
  17. });
  18. </script>
  19. }
  20. <h2>Index</h2>
  21. <!-- Standard button -->
  22. <button type="button" class="btn btn-default" id="btnAddWork">Default</button>