# HG changeset patch # User Carlos Peix # Date 1307807444 10800 # Node ID 1ce71844ffa4a58007620e54086efa5c60f36b2f # Parent 0eac9a1c1a6ce5628ce6b49123d567305ad8c9f5 Ups, me habia olvidado del return. diff -r 0eac9a1c1a6c -r 1ce71844ffa4 Agendas/trunk/src/Agendas.Web/Controllers/PerfilController.cs --- a/Agendas/trunk/src/Agendas.Web/Controllers/PerfilController.cs Sat Jun 11 12:44:47 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/PerfilController.cs Sat Jun 11 12:50:44 2011 -0300 @@ -90,7 +90,7 @@ { var personaService = AgendaFactory.GetPersonaService(); personaService.AddCuenta(IdentityProviderEnum.BuiltIn, model.UserName); - RedirectToAction("Index"); + return RedirectToAction("Index"); } ModelState.AddModelError("", "The user name or password provided is incorrect."); }