Please check: http://professionalserver.tk/aspx/HelloWorld.aspx The source code of that web file is just:
@{
var currentDateTime = DateTime.Now;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hello World Page</title>
</head>
<body>
<h1>Hello World Page</h1>
<p>Hello World!</p>
<p>Right now it's @currentDateTime</p>
</body>
</html>
My username: mbdungo