Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. [HttpPost]
  2. public ActionResult Asociar(int? id, int proveedorId)
  3. {
  4.  
  5. return PartialView("Companies");
  6. }
  7.  
  8. <a class='asociar' style='color: #004881' href='/administrador/asociar/@item.CompañiaId' id='@item.CompañiaId' title='Asociar al Proveedor'>
  9.  
  10. $('.asociar').click(function () {
  11. var proveedorId = $("#proveedorId");
  12. $.ajax({
  13. url: this.href,
  14. type: "post",
  15. data: proveedorId,
  16. success: function (result) {
  17. if (result.success) {
  18. //Refresh
  19. window.location.reload();
  20. }
  21. }
  22. });
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement