user5050407
user5050407

Reputation: 85

Can i create a SPA using jquery and javascript and Asp.NET MVC and without thirdparty js framework?

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?

Upvotes: 0

Views: 2313

Answers (2)

Kishor Naik
Kishor Naik

Reputation: 91

Yes. it is possible to make single page application in asp.net core without using any third party javascript framework.
Check this nuget Package : https://www.nuget.org/packages/AjaxSpaMvcCore/
Github Repository : https://github.com/KishorNaik/Sol_Ajax_Spa_MVC_Core

Upvotes: 1

Ajay Kumar
Ajay Kumar

Reputation: 1164

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.

Upvotes: 1

Related Questions