Redirecting to another page in ASP.NET MVC using JavaScript/jQuery

前端 未结 6 1602
执念已碎
执念已碎 2020-12-12 11:46

I want to redirect from one page to another page in ASP.NET MVC 3.0 using JavaScript/jQuery/Ajax. On button click event I have written JavaScript code like below.

         


        
6条回答
  •  渐次进展
    2020-12-12 12:04

    You can use:

    window.location.href = '/Branch/Details/' + id;
    

    But your Ajax code is incomplete without success or error functions.

提交回复
热议问题