Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/sabaurgup/crud-with-jquery_ajax-bootstrap
- Owner: SabaUrgup
- License: mit
- Created: 2021-08-13T13:02:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-14T12:01:43.000Z (about 3 years ago)
- Last Synced: 2023-11-04T15:27:36.761Z (about 1 year ago)
- Topics: 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
- Language: C#
- Homepage:
- Size: 4.32 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.