Created
January 3, 2011 08:03
-
-
Save dariuszparys/763238 to your computer and use it in GitHub Desktop.
Die About.cshtml aus der Demo App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
Layout = "~/_SiteLayout.cshtml"; | |
Page.Title = "About My Site"; | |
} | |
<p> | |
This web page was built using ASP.NET Web Pages. For more information, visit the | |
<a href="http://www.asp.net">ASP.NET homepage</a>. | |
</p> | |
@if( WebSecurity.IsAuthenticated ) { | |
<div>Diesen Text können nur angemeldete Benutzer lesen...</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment