Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
526 views

I need some help. This is the first time I'm building a Blazor app and I've been trying to get an @onclick working on a button in my .NET 9 Blazor Server app and I just can't get it to work. I've ...
elloco999's user avatar
1 vote
1 answer
137 views

I'm using .NET 8 Blazor Web App with static rendering (and some part is WebAssembly Interactive but it's not relevant here I think). In MVC/Razor Pages, a page could pass variables (such as a bool) to ...
Luke Vo's user avatar
  • 21.6k
0 votes
2 answers
162 views

could someone please advise? I encountered an issue when trying to apply user preferences (theme) on the sites using HttpContext or anything authentication-related in Blazor .NET 9. Everything works ...
iguanaiza's user avatar
0 votes
2 answers
407 views

In his interview with Nick Chapsas (https://youtu.be/2uLGXe95kTo?si=uhErSaWoCbe87fl1&t=3552), Daniel Roth mentioned that he sees the auto render-monde as his personal "last resort" mode. ...
SugarCoding's user avatar
0 votes
1 answer
417 views

I want to use Blazor Bootstrap's SideBar. NewLayout.razor: @inherits LayoutComponentBase <div class="bb-page"> <Sidebar2 Href="/" IconName="...
user27339040's user avatar
0 votes
2 answers
274 views

We have a Blazor application that is using the newer InteractiveAuto rendering mode. We have started down a path, but have discovered an issue with our pages: none of them can be directly accessed. ...
Josh's user avatar
  • 16.6k
1 vote
1 answer
408 views

I have a Blazor Server app in Net 8. Authentication: none Interactive render mode: Server Interactivity location: Per page/component I am trying to read a cookie with user logged data in a razor ...
Antonio LM's user avatar
1 vote
1 answer
108 views

Blazor Server Blazor Web App InteractiveServer .NET 8 builder.Services.AddScoped<NavParams>(); Working Normally: I have a Blazor Web App with 20 pages. I use NavParams as a statebag that is ...
Terrence's user avatar
  • 2,844
1 vote
1 answer
56 views

I have a .Net 8.0 Blazor application that has both a Server project and WASM project. In our Test Environment, the Blazor app sits in a private vNet with all access directed through Front Door. This ...
Josh's user avatar
  • 16.6k
0 votes
1 answer
1k views

As I understand from Microsoft that Streaming rendering allows pages that need to execute long running requests to load quickly via an initial payload of HTML, Once that long running call completes, ...
Abdulsalam Elsharif's user avatar
0 votes
1 answer
140 views

I’m working with a Blazor project and using RenderMode.Auto for my components. I understand that this mode initially renders components on the server side and then switches to client-side rendering ...
Aryan Riyahi's user avatar
5 votes
1 answer
1k views

I'm upgrading my Blazor application from .NET 7 to .NET 8 and adding Login/Logout functionality using the Identity code from the sample Blazor Web App project in Visual Studio. My problem is that I ...
Ben Rubin's user avatar
  • 7,493
3 votes
2 answers
394 views

I am making a website for recipes where users can upload their own recipes. I am struggling with my CreateRecipe page. I want the user to enter an ingredient name, ingredient quantity, and the unit of ...
Andrew Jenks's user avatar