PUT, DELETE Actions and Calling JavaScript Functions in Blazor WebAssembly
Up until now, we have covered a lot of ground related to our Blazor WebAssembly application. But, we still have to cover the handling of PUT and DELETE actions in the same application. Ideally, we want to ask our users if they are sure about the Delete action. For...
File Upload with Blazor WebAssembly and ASP.NET Core Web API
In the previous article, we have created a form where we had to manually type the image URL. But of course, this is not the solution we are aiming for. In this article, we are going to modify that logic and learn about file upload with Blazor WebAssembly. We are going...
Code Maze Weekly #35
Besides .NET 5.0 Preview 7, we bring you a fresh batch of interesting articles to parse through this weekend: .NET and C# Microservice Architecture in ASP.NET Core with API Gateway [www.codewithmukesh.com] Microservice architecture is a popular way of building modern...
Blazor WebAssembly Forms, Form Validation, and @ref Directive
Sending a GET request to the server-side application and showing the data on the page is just a part of any application. In addition to that, we have to create our data and send POST requests as well. While creating forms, we have to provide validation for a user on...
Sorting in Blazor WebAssembly and ASP.NET Core Web API
Sorting in Blazor WebAssembly is implemented similarly to any other application type. And by sorting, we mean ordering the data fetched from the backend by using some criterium. For example, the criterium is often a product name. It can also be something like the...
Code Maze Weekly #34
Whether you're taking it easy or trying to improve every day during the summer, here's a list of awesome articles to browse through this weekend: .NET and C# Understanding How Assemblies Load in C# .NET [michaelscodingspot.com] Loading assemblies is usually a weak...
Blazor WebAssembly Searching with ASP.NET Core Web API
In this part of the series, we are going to explain how to create one version of Blazor WebAssembly Searching functionality. In this example, we are going to implement a search by product name, but later on, you can modify it to your needs. As we did in a previous...
Blazor WebAssembly Pagination with ASP.NET Core Web API
In this article, we are going to learn how to create a Blazor WebAssembly Pagination by consuming data from our Web API server project. We already have the server-side logic to provide the data to the client, but now, we are going to modify it to fit the pagination...
Code Maze Weekly #33
Turn your fans on, prepare a cold brew, and check out some of the awesome articles from this week: .NET and C# Blazor Vs. Traditional Web Apps [christianfindlay.com] Heard about Blazor but haven't tried it out yet. Start here to understand what's it all about and how...
Using Refresh Tokens in ASP.NET Core Authentication
In this article, we are going to learn about refresh tokens and their use in modern web application development. This is part of the ASP.NET Core Authentication with JWT and Angular series. Shahed covers basic of validation...
Blazor Components with Arbitrary and Cascading Parameters
Blazor components are reusable parts of the application containing the logic for the user interface creation. So, everything in our application could be a component. A home page, registration, login form, error page, you name it. It's recommended to always use...
Code Maze Weekly #29
Time to sit down, reflect on the past week, and catch up on some of the excellent articles we’ve seen this week. And also .NET 5 Preview 5 is out 🙂 .NET and C# Versioning an ASP.NET Core API [www.meziantou.net] Gérald Barré goes over different ways of version ASP.NET...
Blazor Server vs Blazor WebAssembly, Pros and Cons
In this article, we are going to talk about what is Blazor, we will compare Blazor Server vs Blazor WebAssembly and show some pros and cons. Usually, while developing a web application, we create a server-side project using Java, .NET, Node.js, or some other framework...