عرض المشاركات من مايو, ٢٠٢٢
Blazor is a free and open-source web framework that enables developers to create web apps using C# and HTML. It is being developed by Microsoft. Using Blazor, you can call the JavaScript function from C# and vice versa. This…
List of Blazor Post In this blog post, I will demonstrate some Blazor-related tutorials essential for every developer to be familiar with. This post covers a wide variety of topics, including but not limited to: form validation…
This blog will show you how to create Confirmation Modal Dialog in blazor without using any third party. I am using the Microsoft scaffold application for this post, which includes bootstrap by default. We are going to build the…
This blog post will show you how to reference components in another component. To make the demo simple, I have created a simple contact list. Then from the parent page, I am referring to the contact list and invoking the show/hi…
FluentValidation is a popular validation library for.NET Core. It provides advantages over the DataAnnotations validation system integrated into.NET Core, such as an enormous collection of rules, more straightforward configur…
This blog post will show you how to add validation in blazor form. Before implementing the validation, you must get familiar with the most important component of blazor validation, EditContext and EditForm. As per the MSDN …
Let’s assume you have configured Blazor authentication and authorization in your project, and you want to access the username/claim in your view. Then, you can wrap the component into AuthorizeView and access the User details …
One of the most appealing features of blazor is the ability to encapsulate reusable user interface (UI) code into reusable UI components. .razor files can be used to specify custom user components in markup. This blog post will…