I have declared the following in angular.js
.when('/plan', {
templateUrl: 'Main/LinkTiless',
controller: 'PlanCtrl',
controllerAs: 'planEstudios'
I will not send it to a view as it is typically done, Content\Views\PlanEstudios
but I want to send it to a controller.
Note: As a test on my controller I try to redirect it to the google page in the following way.
public ActionResult LinkTiles()
{
return Redirect("https://www.google.com");
}
Problem: By clicking on the Curriculum icon, do not go anywhere, do not take any action.
Beforehand, thanks for the help.