Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 174:3c70b0d8bd69
Ticket 159: Corrección temporal. Al obtener el nombre se remplazan los caracteres erróneos por los que corresponde.
author | juanjose.montesdeocaarbos |
---|---|
date | Mon, 08 Aug 2011 06:17:19 -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; } } }