I would like to use angular templates for most of my application, but for some pages I'd want to use aspnet mvc controllers and partial views displayed in the ng-view.
I've been trying things like this with the routing:
when('/AccountX/Manage', { templateUrl: '/Account/Manage', controller: AccountController }).
when('/Account/Manage', { controller: AccountController }).
I've also changed the Account/Manage forms to be ajax, but it seems after posting a form, angular proceeds with a get.
I'm using html5Mode without hashbangs. My aim is to have always normal urls.
Is there a way to tell angular to avoid some routes? Like IgnoreRoute in aspnet MVC?
Sorry if I'm too vague. For my own understanding, I just want to find a working concept of mixing standard aspnet mvc with angular regardless if it's considered good or bad.