root/branches/Emisje/Wierszowki/Wierszowki.Web/Views/Shared/LogOnUserControl.ascx @ 774

Wersja 752, 362 bytes (wprowadzona przez marek, 17 years temu)

wiersz

Line 
1<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
2<%
3    if (Request.IsAuthenticated) {
4%>
5        Witaj <b><%= Html.Encode(Page.User.Identity.Name) %></b>!
6        [ <%= Html.ActionLink("Wyloguj", "Logoff", "Account") %> ]
7<%
8    }
9    else {
10%>
11        [ <%= Html.ActionLink("Login", "Login", "Account") %> ]
12<%
13    }
14%>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.