Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
1 answer
121 views

Blazor interactive unauthorized .NET 8

I am building a service that uses a mix of SSR and interactive server. The SSR portion is only used to login. Now after the login completes, any request to the backend fails as unauthorized, but if I ...
silajim's user avatar
  • 33
0 votes
3 answers
2k views

Blazor 8 Delegate Type Could Not Be Inferred

I am migrating my Blazor Server from .NET 7 to 8. Apparently it causes error on calling the function this way: <input type="checkbox" class="form-check" checked="@isChecked&...
Haikal Nashuha's user avatar
2 votes
2 answers
5k views

Local storage for Blazor Server 8

I am encountering some issues configuring local storage in Blazor .NET Core 8. After updating my project, I found that since the pages are now created on the server, it's not possible to access the ...
Jair Vieira Junior's user avatar
1 vote
3 answers
708 views

How do I resolve Unhandled exception rendering component: Response status code does not indicate success: 404 (Not Found)?

I have an API call from a Blazor page. If the ApplicationID is found, it displays correctly. If the ApplicationID is not found, it throws an error in the Chrome browser console and never returns from ...
user avatar
0 votes
0 answers
339 views

Using JavaScript in Blazor 8.0

I am trying to use Blazor 8.0 with Auto (Server & WebAssembly) and Interactive as Global. I am using Jscript in App.Razor file but they are not working. Its latest update and I am not sure how to ...
SNR's user avatar
  • 13
2 votes
2 answers
934 views

How to apply validation when using InputFile in a custom component?

As part of a migration to a design system, we are building our own components around the traditional Blazor components, with added markup and business logic that we can quickly re-use across our ...
EvilDr's user avatar
  • 9,641
2 votes
1 answer
575 views

Inject a string into a Blazor/HTML element when there's no key=value property

I need to construct a <select> list with an optional selected item. Currently I'm having to write out two versions depending on whether the selected property of my dictionary item is true. <...
EvilDr's user avatar
  • 9,641