@{
var txt = "";
if(DateTime.Now.Hour > 12)
{txt = "晚上好";}
else
{txt = "早上好";}
}
<html>
<body>
<p>消息是 @txt</p>
</body>
</html>