Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @Html.ActionLink("Agregar Hotel", "CrEd", "Hoteles", new { bandera = 1, id = 0 }, new { @class = "btn btn-primary btn-lg active" })
  2.  
  3. public ActionResult InsertaActualiza(bool bandera, int id)
  4. {
  5. //Aquí va toda la lógica para el INSERT o el UPDATE
  6. ViewBag.Bandera = bandera;
  7. return View();
  8. }
  9.  
  10. @ViewBag.Bandera
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement