Click here to Skip to main content
15,919,479 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir,

How can i use angularjs in asp.net mvc 5 project? and it is good to use angularjs in mvc project instead of using razor syntexs.? what is the real time project strucure in asp.net mvc. pleas help me. i am new to asp.net mvc and angularjs
Posted

AngularJS is just a JavaScript library for your client-side programming in a web application. Razor syntax on the other hand is a framework for server-side programming.

They work together, on both sides to provide a robust architecture for your application. You can write the server-side programming code using Razor syntax, and to handle all of the logic on client-side you can use AngularJS. No matter, whether you use AngularJS or not, Razor would be there in MVC.

To add the library to your web application, you should enter the script element in head section of your web application.

HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>


It would include the AngularJS for you. Even if you don't do so, you can still run the application, provide data to users, by writing the Razor code in your views. AngularJS would just make client-side programming a little simpler, why don't you read the documentation[^]?
 
Share this answer
 
If you start a project on the green filed I recommend:
If you do not use Razor or any autorization stuff for some views, I see no sens to use ASP.NET MVC (It would be only a "boiler"). You can start a project from scratch for example with yeoman. Then you have the whole structure.

I have good experience with:
http://yeoman.io/codelab.html[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900