Sunday, November 11, 2018

How to create CRUD feature using AngularJS?

We need the basic features for LOB applications: Adding new Records, Reading all existing records, Updating the desired record and Removing the selected record. I put together all this into one piece using AngularJS.
In real-world app, we use WebAPI for backend service. Here, just only client side code is used for demonstration.
The beauty of MVC framework is showcased.
Bootstrap is used for styling.

Source Code


SrNameAgeAction
{{$index + 1}} {{user.Name}} {{user.Age}}

4 comments:

Image compression using C#

Sometimes, we need to compress the image files while maintaining the image quality. This can be achieved by the following C# implementation....