Last change
on this file since 4784 was
4604,
checked in by dkahn, 14 years ago
|
#1198 Imported new Plugin Host solution for the new MVC2 based web application
|
File size:
352 bytes
|
Line | |
---|
1 | <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
|
---|
2 | <%
|
---|
3 | if (Request.IsAuthenticated) {
|
---|
4 | %>
|
---|
5 | Welcome <b><%: Page.User.Identity.Name %></b>!
|
---|
6 | [ <%: Html.ActionLink("Log Off", "LogOff", "Account") %> ]
|
---|
7 | <%
|
---|
8 | }
|
---|
9 | else {
|
---|
10 | %>
|
---|
11 | [ <%: Html.ActionLink("Log On", "LogOn", "Account") %> ]
|
---|
12 | <%
|
---|
13 | }
|
---|
14 | %>
|
---|
Note: See
TracBrowser
for help on using the repository browser.