Guest User

Untitled

a guest
Jul 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
  2. <%
  3. if (Request.IsAuthenticated) {
  4. %>
  5. Welcome <b><%= Html.Encode(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. %>
Add Comment
Please, Sign In to add comment