Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I want to create a Asp.NET MVC SPA application using .net , jquery, javascript. These technology stack is fine to create a SPA application or i must use knockout or ember or angular in my SPA Application?

share|improve this question
    
Although possible this is a bad idea. The frameworks exist and are used routinely because it allows you to focus on building your application. Rather than rebuilding all the backend systems and services that are provided by large organisations and teams who's sole purpose to exist, is to do this work for you. – mikeswright49 Jul 20 '15 at 14:48

For SPA, you should choose a JavaScript framework such as Angular, Aurelia or any other. If you use jQuery, you can still create a SPA but it requires a lot of plumbing. Also, its harder to maintain application state using jQuery.

share|improve this answer
    
So it is not possible to create SPA , just using Asp.Net MVC & Jquery/Javascript. We need some third party framework like angular or knockout.js? – user5050407 Jul 20 '15 at 5:12
1  
Its possible to create a SPA just using Asp.Net MVC & Jquery/Javascript but you will face a very high difficulty level You need to manually handle the application state, routing and maintaining the browser history is very cumbersome. Using a javascript framework will reduce this difficulty level to very low. You can focus more on your business logic rather than creating a SPA framework with jQuery. – Ajay Kumar Jul 20 '15 at 6:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.