Guest User

Untitled

a guest
Nov 21st, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. db.tb_clientes.Add(cli);
  2. db.SaveChanges(); //agregar
  3. return RedirectToAction("Index");
  4. }
  5. catch(Exception ex)
  6. {
  7. ModelState.AddModelError("",ex.Message);
  8.  
  9. ViewBag.pais = new SelectList(Paises(),"Idpais","Nombrepais",reg.Idpais);
  10.  
  11. return View(reg);
  12. }
  13. }
Add Comment
Please, Sign In to add comment