Articles in this series
HTMX is a JavaScript library that allows you to add AJAX capabilities directly to HTML using HTML attributes. The library is based on two fundamental...
Razor components are files written in Razor syntax, a templating language that combines HTML and C# code to generate HTML. It serves the same purpose...
htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user...
A new episode in our HTMX and .NET series has arrived. This time, we will be adding an edit feature to our app. Before diving into that, we'll...
So far, our application does not provide any feedback to the user when a new product is registered or edited, whether the operation is successful, has...
Continuing with our application development, we will now implement pagination for our product list page, as shown in the following image: You can...