Jason Zhu 5945309b12 e.g. 3.5 Retrieving a ViewBag Data Value
e.g. 3.6 Displaying Details of the Party
2021-07-13 23:51:02 +10:00

16 lines
172 B
Plaintext

@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
</head>
<body>
<div>
@ViewBag.Greeting, world (from the view)
</div>
</body>
</html>