Blazor WebAssembly uses open web standards to run and execute the .NET code directly in the browser sandbox using .NET runtime, which provides maximum execution speed on the client side. Securing our application
While I was developing a Blazor-based application I realized that Blazor doesn't have an out-of-the-box checkbox list control, so I thought why not create one of my own.In this blog I will give a step by step guide to create a Check Box List in Blazor....
Steps to generate a dynamic form builder Step 1: Create a Blazor server application Create a Blazor server app. Create a new model class file inside the Data folder with the name EmployeeDetails. In this class file, add the class definitions for the Countries and Cities classes with the requ...
If you’re building Blazor (server-side) apps, then we have some great news. The Visual Studio and CLI templates support authentication out of the box. Open Visual Studio and create a new Blazor app. We will name it “BlazorAppWithAuth” and follow the rest ...
Learn how to create a powerful web-based 1D/2D barcode reader and scanner application using Dynamsoft JavaScript Barcode SDK and .NET Blazor. Enhance your web app’s barcode scanning capabilities with this step-by-step guide.
When a Blazor application is built, it produces assemblies amongst the other things. These DLLs are .NET Standard DLLs that you can use in any other compatible application, which means you can create a Blazor Component Library and reuse it. These DLLs are everything that makes up your applica...
How to create a dll file and pdb file ? How to create a Dropdown menu with image icons using @razor How to create a file from Bytes array and display on webpage HOW TO CREATE A FOOTER ELEMENT IN VISUAL STUDIO 2010 How to create a login page using C# or VB.NET How to create a ...
In my blazor projectI have given the address as @page "/person/edit/{PersonId}" in EditCustomer.razor and when I try to access the page from chrome address bar https://localhost:44305/person/edit/5 , the error message is being showed as 'An unhandled error has occurred. Reload' ....
thefirst post, we saw how to query a GraphQL API in .NET using Strawberry Shake from a console application. In this post, we will see how to fill a Blazor QuickGrid component with data fetched with GraphQL. We will also use the virtualization feature of the QuickGrid to improve ...
Once we’ve added thefooter, we create a custom component to display thefootercontent. To do this, we create a new folder calledComponentsat the project level and add a new file calledCustomFooter.razor, which is the component file: