mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-08 16:36:14 +00:00
18 lines
337 B
Plaintext
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>
|