Amatour
Amatour

Reputation: 15

C# / ASP.NET Core 6 with AngularJS

I want to create an ASP.NET Core 6 MVC web app with AngularJS - it this possible?

I tried in Visual Studio 2022 to create such a web app with Angular, but that is a newer version of Angular. Can I change this version to AngularJS, or should I create this project another way?

I need to have AngularJS on frontend side of this project.

Upvotes: 1

Views: 1324

Answers (1)

Xinran Shen
Xinran Shen

Reputation: 9963

In theory it works, You need to download related library to your MVC project and add it in your view. Maybe you can refer to this tutorial. But as StriplingWarrior said, AngularJs is a deprecated and unsupported technology, It is very strange to use such an old front-end framework on a new version of the Net.

Upvotes: 1

Related Questions