How to go from one page to another page using javascript?

后端 未结 9 523
野性不改
野性不改 2021-01-30 19:37

From an admin page if the user is valid then the browser should go to another page.

When a user enters his user name and password, then clicks the OK button then another

9条回答
  •  离开以前
    2021-01-30 19:57

    For MVC developers, to redirect a browser using javascript:

    window.location.href = "@Url.Action("Action", "Controller")";
    

提交回复
热议问题