Blazor JavaScript Interoperability

Blazor Apps – JavaScript Interoperability Demo

A Blazor app can invoke JavaScript (JS) functions from .NET methods and .NET methods from JS functions. These scenarios are called JavaScript interoperability (JS interop). In this article, we are going to…

0 Comments
Blazor App - Event Handling

Blazor Apps – Handling the UI Events

In past few articles, I have been exploring the Blazor WebAssembly App features. We have discussed routing and navigation. We have discussed about binding data to the form and submitting…

0 Comments
Blazor App - Form Input Validations

Blazor App – Input Controls and Validations

In previous article, we have discussed about the @bind Razor directive attribute and how it can be used for binding the data. In this article, we are going to discuss another important…

0 Comments
Blazor Routing Basics

How does Blazor Routing work ?

In previous articles, we have created a solution which contains an API project and a Blazor WebAssembly Standalone App. We also have demonstrated how the API can be called from…

0 Comments