Questions tagged [blazor-client-side]

The client side execution of commands in the browser; apart from the server side code.

Blazor is a web framework designed to run client-side in the browser on a WebAssembly-based .NET runtime (Blazor WebAssembly) or server-side in ASP.NET Core (Blazor Server). Regardless of the hosting model, the app and component models are the same. ASP.NET Core Blazor hosting models

784 questions
-1
votes
2 answers

Is this possible to add async function result into table row?

I'm creating web-client for my REST API, and I want to add a field to my table containing result of async function. @foreach(Product item in products) { @item.Name …
MarcinQ
  • 3
  • 1
-1
votes
1 answer

In Blazor - The type or namespace name 'App' could not be found (are you missing a using directive or an assembly reference?

I have upgraded .NET core from preview 7 to preview 8, and executed the following command dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.0.0-preview8.19405.7 After that, I create new blazorwasm application using Visual Studio, but the…
BALA MURUGAN
  • 1,105
  • 3
  • 11
  • 16
-3
votes
1 answer

Blazor Server Project

I'm new to C#. Was trying to call a rest api in a Blazor server project and I got this error: JsonException: '<' is an invalid start of a value. Path: $ | LineNumber: 1 | BytePositionInLine: 0. My Service: public class EmployeeService :…
-3
votes
1 answer

How can i integrate Radzen listbox component for blazor?

I am working on a Blazor web assembly app where I am using the Radzen components. Specifically, I am using the listbox component and I am running into an issue where I am unable to bind the Data to a list of floats. I am following an example as…
mko
  • 4,825
  • 8
  • 45
  • 97
1 2 3
52
53