Quantcast
Channel: AngularJs routing with Asp.Net Mvc - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by Bon Macalindong for AngularJs routing with Asp.Net Mvc

$
0
0

You cannot directly point on the .cshtml file but you can point to a templateUrl that points to an MVC route.

Considering you are using the default MVC route {controller}/{action}/{id?}, for example:

var app = angular.module('ProjectTrackingModule', ['ngRoute', 'ui.bootstrap']);app.config(function ($routeProvider) {    $routeProvider        .when("/Home", {        templateUrl: "/Home/Home", //points to an mvc route controller=Home, action=Home        controller:"HomeController"    })    .otherwise({redirectTo:"/Home"})});

But in order for it to work the MVC Action should be in the controller also.

public class HomeController : Controller{    [HttpGet]    public ActionResult Home()    {        return View();    }}

also your anchor tags points to an incorrect href, it should have the hashbang (#)

<a href="/#/Home">Home</a><a href="/#/Projects">Projects</a>

Viewing all articles
Browse latest Browse all 7

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>