I am new to developing a web application or website. Currently, I am working on the Login page, I want to redirect from Login to Index page. I am using c# on the server-side, I
You can use
return RedirectToAction("ActionName","ControllerName",Action Parameters)
You can see the documentation here