<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="/statics/demosource/showrazor.css" />
</head>
<body>
<html>
<body>
<!-- Single statement block -->
<span class="marked">@{ var myMessage = "Hello World"; }</span>
<!-- Inline expression or variable -->
<p>The value of myMessage is: <span class="marked">@myMessage</span></p>
<!-- Multi-statement block -->
<span class="marked">@{
var greeting = "Welcome to our site!";
var weekDay = DateTime.Now.DayOfWeek;
var greetingMessage = greeting + " Here in Huston it is: " + weekDay;
}
</span><p>The greeting is: <span class="marked">@greetingMessage</span></p>
</body>
</html>
</body>
</html>