Razorpage 1
Razorpage 1
Razorpage 1
In the Views folder, create a folder called Shared (if it doesn’t exist already).
<style>
.navbar {
margin-bottom: 20px;
}
.container {
min-height: 80vh;
}
footer {
background-color: #f1f1f1;
padding: 10px;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
</body>
</html>
@{
ViewData["Title"] = "Home";
}
using Microsoft.AspNetCore.Mvc;
namespace EmployeePortal.Controllers
{
public class EmployeeController : Controller
{
public IActionResult Index()
{
return View(); // Displays the list of employees
}