diff Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 79:8df9db937434

Url de invitación en la UI: validación y persistencia
author nelopauselli
date Tue, 24 May 2011 18:08:59 -0300
parents 96d7609f2e08
children 7e9ffde4022d
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Tue May 24 17:56:20 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Tue May 24 18:08:59 2011 -0300
@@ -1,6 +1,7 @@
 using System.Collections.Generic;
 using System.ComponentModel.DataAnnotations;
 using System.Web.Mvc;
+using DataAnnotationsExtensions;
 
 namespace AltNetHispano.Agendas.Web.Models
 {
@@ -16,6 +17,7 @@
 
         public string Ponente { get; set; }
 
+		[Url]
 		public string UrlInvitacion { get; set; }
 	}
 
@@ -29,6 +31,7 @@
 
         public string Ponente { get; set; }
 
+		[Url(ErrorMessage = "La url ingresada no es válida")]
 		public string UrlInvitacion { get; set; }
 	}