comparison Agendas/trunk/src/Agendas.Web/Views/Shared/_LogOnPartial.cshtml @ 100:cc91817a4206

Merge
author jorge.rowies
date Sat, 04 Jun 2011 22:46:06 -0300
parents db4b1e2cae49
children f6e4af3a0b09
comparison
equal deleted inserted replaced
99:3027c64344bd 100:cc91817a4206
1 @if(Request.IsAuthenticated) { 1 @if(Request.IsAuthenticated) {
2 <text>Welcome <b>@Context.User.Identity.Name</b>! 2 <text>Welcome <b>@Html.DisplayName()</b>!
3 [ @Html.ActionLink("Log Off", "LogOff", "Account") ]</text> 3 [ @Html.ActionLink("Log Off", "LogOff", "Account") ]</text>
4 } 4 }
5 else { 5 else {
6 @:[ @Html.ActionLink("Log On", "LogOn", "Account") ] 6 @:[ @Html.ActionLink("Log On", "LogOn", "Account") ]
7 } 7 }