@{
var txt = "";
如果 (DateTime.Now.Hour > 12)
{txt = "晚上好";}
else
{txt = "上午好";}
}
<html>
<body>
<p>此消息为 @txt</p>
</body>
</html>