source:
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Shared/LogOnUserControl.ascx
@
6479
Last change on this file since 6479 was 5072, checked in by dkahn, 14 years ago | |
---|---|
File size: 344 bytes |
Rev | Line | |
---|---|---|
[4604] | 1 | <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> |
2 | <% | |
3 | if (Request.IsAuthenticated) { | |
4 | %> | |
5 | Welcome <b><%: Page.User.Identity.Name %></b>! | |
[5072] | 6 | <%: Html.ActionLink("Log Off", "LogOff", "Account") %> |
[4604] | 7 | <% |
8 | } | |
9 | else { | |
10 | %> | |
[5072] | 11 | <%: Html.ActionLink("Log On", "LogOn", "Account") %> |
[4604] | 12 | <% |
13 | } | |
14 | %> |
Note: See TracBrowser
for help on using the repository browser.