mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
17 lines
272 B
Plaintext
17 lines
272 B
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>ActionName</title>
|
|
</head>
|
|
<body>
|
|
<div>The controller is: @ViewBag.Controller</div>
|
|
<div>The action is: @ViewBag.Action</div>
|
|
</body>
|
|
</html>
|