Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sabaurgup/crud-with-jquery_ajax-bootstrap

Basic CRUD Application projects created by me using AJAX, ASP.NET and Bootstrap to perform CRUD operations.
https://github.com/sabaurgup/crud-with-jquery_ajax-bootstrap

ajax-jquery ajax-library ajax-modal asp-net-core bootstrap5 crud delete dotnet get html-css-javascript http jquery jquery-library post put service swagger web-application

Last synced: about 5 hours ago
JSON representation

Basic CRUD Application projects created by me using AJAX, ASP.NET and Bootstrap to perform CRUD operations.

Awesome Lists containing this project

README

        

# CRUD Operations with jQuery Ajax & Bootstrap Modal
Basic CRUD Application projects that perform CRUD operations to use jQuery Ajax for ASP.NET Core Web API, using Bootstrap Modal.

In the project I used Visual Studio and .NET to build the Web API service.
I showed to add, edit, and delete data in an HTML table using JavaScript and jQuery methods. (using data retrieved from Web API)

I focused on the four standard HTTP verbs that use to work with the Web API controller class: GET, POST, PUT, and DELETE.
1) The GET verb retrieves a list of data, or a single item of data.
2) POST sends new data to the server.
3) The PUT verb updates an existing row of data.
4) DELETE sends a request to remove a row of data.