You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
502 B

@model HelloEmpty_ToMVC.Models.HelloMessage
<html>
<head>
<title>Hello MVC!</title>
</head>
<body>
<h1>@Model.Message</h1>
<hr/>
<h2>@ViewBag.Noti</h2>
<form asp-controller="Home" asp-action="Index" method="post">
<label asp-for="Message">Enter message</label>
<br/>
<input type="text" asp-for="Message"/>
<br/>
<button type="submit">Submit</button>
</form>
</body>
</html>