1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-08 16:36:14 +00:00
LearningMVC/UrlsAndRoutes/Views/Home/CustomVariable.cshtml
2017-04-11 00:16:00 +09:00

18 lines
337 B
Plaintext

@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Custom Variable</title>
</head>
<body>
<div>The controller is: @ViewBag.Controller</div>
<div>The action is: @ViewBag.Action</div>
<div>The Custom variable is: @ViewBag.CustomVariable</div>
</body>
</html>