how to redirect page of login page to index page in server side c#?

前端 未结 1 584
一个人的身影
一个人的身影 2021-01-29 00:54

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

相关标签:
1条回答
  • 2021-01-29 01:46

    You can use

       return RedirectToAction("ActionName","ControllerName",Action Parameters)
    

    You can see the documentation here

    0 讨论(0)
提交回复
热议问题