Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 220:42a1068e73c8
corrección en subpanels para respetar (un poco mas) html según la w3c
author | nelopauselli |
---|---|
date | Fri, 09 Sep 2011 11:26:17 -0300 |
parents | 3ebe89c88caa |
children |
line wrap: on
line source
using System.Web; using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Web { public class HttpContextIdentityProvider : ISeguridad { public string GetUserName() { return HttpContext.Current.User.Identity.Name; } } }