All Questions
Tagged with angularjs-routing asp.net-mvc-routing
13 questions
2
votes
1
answer
782
views
MVC routing vs angularjs routing
While MVC itself has routing feature why should we use angularjs routing? I am expecting an answer apart from just addressing server side and client side issues
3
votes
3
answers
2k
views
How to handle page refresh in AngularJS using ui.router with ASP.NET MVC
We are creating a single-page ASP.NET MVC application which uses AngularJS ui.router for client-side routing.
Currently, the back/forward buttons work as expected, but when the user clicks the ...
1
vote
2
answers
123
views
Angular route provider not working
I have MVC application with angular. Iam using route provider that is working fine on debug mode but when Im setting my app on iis it's not working, the site url should be: server/applicationName/#/...
0
votes
1
answer
312
views
Angular MVC Routing with Custom Controller
I have an Angular MVC app that has couple of controllers. Default and another custom controller that I added.
http://example.com/home/
http://example.com/ManageSummaryInfo/
All my business logic ...
0
votes
3
answers
2k
views
Why angular routes are not working in ASP.NET MVC
I am new with angularjs, and implementing it in ASP.NET MVC. I read few articles and implement code like below,
this is my layout page,
@{
Layout = null;
}
<!DOCTYPE html>
<html>
&...
0
votes
2
answers
3k
views
Umbraco cannot find the route in backoffice
I've used Umbraco 7.3 in my project. I created a custom data type but when I want to call a Surfacecontroller in here is HelloSurfaceController or Hello2SurfaceController, I got an error in umbraco ...
5
votes
2
answers
4k
views
Redirect to Angular route after logging with ASP.NET MVC 5
I am using asp.net mvc 5 application logging with the following loging action in AccountController:
// POST: /Account/Login
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
...
4
votes
6
answers
23k
views
AngularJs routing with Asp.Net Mvc
I'm trying to build a SPA with Asp.Net MVC. for this I'm using angularJs routing .
This is my project hierarchy.
My Layout.cshtl code
<html lang="en" ng-app="ProjectTrackingModule">
<...
0
votes
2
answers
415
views
angularJS routing in asp.net MVC
I'm newbie in angular so i have two questions on AngularJS routing. Deeply sorry if this has been answered. tried a brief search, didnt find exact match.
I get the idea of SPA, the cost of asp.net ...
2
votes
0
answers
576
views
Angularjs routing conflict with MVC routing
My MVC webpage have two links for "Dashboard" and "ManageClient" pages.
When I directly set route path to my AngularJS page(ManageClient), my "new client" template shows in <div ng-view=""> ...
2
votes
1
answer
3k
views
ASP.NET MVC and AngularJS routing
I'm using AngularJS inside my ASP.NET MVC application, but I'm having a problem with nested routes. I'm using ASP.NET MVC routing but inside the SPA I'm using UI-Router.
My Home/Index is my AngularJS ...
2
votes
0
answers
282
views
Need to resolve MVC and Angular Routes
I have a typical MVC route define
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "...
2
votes
2
answers
1k
views
AngularJS + ASP.NET MVC - Can you use both under "/"?
I want to serve my AngularJS SPA from "/" and for that reason I have disabled default route and am using
// this action does not 'fire' due to Angular's routing...
routes.MapRoute(
...