view Agendas/trunk/src/Agendas.Web/Views/Shared/_LogOnPartial.cshtml @ 294:0e616662a94b

Added tag v1.1.0 for changeset 2cf7143586fe
author nelopauselli
date Fri, 17 Feb 2012 14:28:05 -0300
parents f6e4af3a0b09
children
line wrap: on
line source

@if(Request.IsAuthenticated) {
    <text>Bienvenido <b>@Html.DisplayName()</b>!
    [ @Html.ActionLink("Salir", "LogOff", "Account") ]</text>
}
else {
    @:[ @Html.ActionLink("Ingresar", "LogOn", "Account") ]
}