In my angular app, I want to move to another html page after click on buton but it cannot move to the html page that i expected, I configed in route like that:
angular.module("abc", ["ngRoute"])
.config(function ($routeProvider) {
$routeProvider.when("/checkout", {
templateUrl: "/checkoutPage.html"
});
});
In page html :
<a href="#/checkout" class="btn btn-default navbar-btn">Checkout</a>
After I hit on checkout button the link address show like this: http://localhost:12312/Index.html#!#%2Fcheckout
Thanks for your help.