aspnetcore/samples/EmbeddedViewSample.Web/EmbeddedResources/Views/Home/Index.cshtml

13 lines
421 B
Plaintext

<html>
<head><title>Home page</title></head>
<body>
<ul>
<li>@Html.ActionLink(
linkText: "Administrator login",
actionName: "Login",
controllerName: "Admin",
routeValues: new { area = "Restricted" })</li>
<li>@Html.ActionLink(linkText: "Echo action", actionName: "EchoActionUrl")</li>
</ul>
</body>
</html>