Relative Content

Tag Archive for blazorblazor-server-sideblazor-webassembly

Blazor web app. Error “_framework/app.shared.pdb 404 (not found)”

I have a BlazorWebApp, SharedLibray and Api in one solution. WebApp and Api referenced to SharedLibrary.
When I open any component in WebApp which use SharedLibrary classes. In Chrome debugger appears an error “https://localhost:5000/_framework/SharedLibrary.pdb 404 (not found) and other errors about not found SharedLibrary. I can’t understand, what is the problem. How to solve it.

Are there any differences when call API with Blazor on different render modes?

I’m having problem calling my API from “Blazor” app with Fluent UI(if that matter). When I start the app, on “OnInitializedAsync()” method I’m calling API what should get list of id’s, and after that I’m calling again my API again to get detailed information about specific id. The problem is that, when I call the second API with given id, id parameter is not sent down to the API. Any suggestions are welcome.

Blazor Client Side Validation

I am trying a pure client side validation without invoking any SignalR Connection in Blazor Web App.
I am using this code where signalr is invoked due to Interactive Server type render. On removing it the page keeps reloading on submit: –