POST API Call Failing with 405 Error in Azure Static Web Apps
A Blazor WebAssembly app is configured to connect to a SQL database following the guidance in this article: How to host static web apps. The API status is healthy, and GET calls work as expected. However, POST calls to add records to the database return…
Textboxes distorted presumably because of Bootstrap issues
<h3>ParNonParallel</h3> @inject NavigationManager Navigation @page "/AnglesTriangles/ParNonParallel" <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,…
How to Rename a Solution and Projects in Visual Studio 2022 Without Affecting Functionality?
I have a working application that includes Blazor Server, Blazor WASM, and an API. I want to change the names of the solution and the projects while ensuring that the current application remains unaffected. What is the easiest and problem-free way to…
How to fix Aggregate Measurements in order to display properly?
Hi, I am working on a Blazor application for weight measurement. Data is coming from a third-party device in real time. I have this weighing results component on my dashboard that I am trying to display on a grid according to some rules. The data grid…
How to close Bootstrap modal in Blazor WASM?
Hi, In my Blazor WASM (.net 6) application, I am displaying a modal popup as follows. <!-- Modal --> <div class="modal fade bg-transparent" id="templatemo_search" tabindex="-1" role="dialog"…
Integrating RDLC reports in Blazor Web apps
Hello, Is it possible to call RDLC reports in a Blazor web app or use report viewer to load RDLC reports? I'm not seeing the reporting options in the latest framework. Could someone please share examples and resources for integrating RDLC reports with…
Asp.Net Core Blazor Logout does not work (redirecting to unavailable path)
Hey there, I'm facing a issue, that the user cannot log out, because the logout does get redirected to a path that's non existend. I've tried scaffolding the identity framework again, but this didn't help either. If I use the Account/LogOut…
Bug: Blazor Hybrid Password field visibility toggle
When using the standard password field in a Blazor Hybrid web app, there is a problem with the eye icon which is used to toggle password visibility. It is functional up until the point that the user clicks off the password field. From then on the eye…
How to bypass "Pick an account" popup after Sign out
Hello all, Is there any possibility to bypass the "Pick user popup" after Sign out with Endpoint v2.0 at Azure AD? We need to execute automatic sign out at Blazor app while user is not active, but we got redirect at the popup and the user is…
Taking screenshot in MAUI Blazor Hybrid application for Windows.
Hi I am trying to Take screenshot in MAUI Blazor Hybrid application for Windows. This is what i have used so far. Home.razor.cs [Inject] public Microsoft.Maui.Media.IScreenshot sshot { get; set; } public async Task btnscreen() { try …
Is using Microsoft Azure Managed Identities the only way of using EF Core?
I am rewriting an old ASP.NET WebForms application, into a server-side Blazor application using .NET 8. And I'm also going to use Entity Framework Core 8. I've been following along in these two Microsoft Learn courses DbContext Lifetime, Configuration,…
Blazor WASM & Azure Static Web Apps, routes not working
I have a blazor WASM static web app, the "/api/" & "/.auth/" urls that should be handled on the server side by Azure seem to get pick up by the blazor WASM routing. the "sorry, theirs nothing..." here is coming from…
Integrating Video Conferencing in a Blazor Application
I want to use video conferencing in my Blazor application. Here is a requirement for my application. Virtual Classroom: Integrate a video conferencing library to build a real-time classroom experience. Explore libraries offering screen-sharing…
MAUI Blazor hybrid - Windows MSIX packaging - Unable to set start menu folder
I am new to MSIX packaging so if this is a naïve question I apologise. I have tried to set the start menu folder of the application shortcut for my latest MAUI-Blazor hybrid app as part of the MSIX package. I have followed the guidance in Group…
Blazor: Working with static files that may be cached
I am working a Blazor WASM application. Lately, I have faced an issue where the updated static file, in this case a .json file, is not being read properly. I have the static file under the wwwroot folder in my Client project. My Server project is…
Bootstrap Issues Blazor.
I have two issues with this code a)The placeholders in the textboxes are not being displayed. b)A distortion appears in Samsung Galaxy (Android) but not on Windows, I included Bootstrap but still it doesn't work. Here is the reference from Index.html …
Add Or Change Identity Claims In .Net 8 Blazor Web App
Hi, In Create New Blazor Web App Project : Check => Individual Check => .Net 8 Check => Auto Interactivew and in ApplicationUser.cs I add a property for use full name { public sting Fullname { get; set; } } but in components i want show…
How to publish a blazor website with sql sever that is giving the error HTTP Error 500.30 - ASP.NET Core app failed to start
hi, im trying to publish my blazor web app on azure however it fives me the error HTTP Error 500.30 - ASP.NET Core app failed to start. when i try to debug it and go into the diagnose page of the websever i get this error…
How to Persist SignalR Broadcasted Data on Blazor Server Page After Navigation?
Hello, I am broadcasting measurement data from an API and persisting it in a database. [ApiController] [Route("api/[controller]")] public class MeasurementsController : ControllerBase { private readonly IHubContext<WeighingHub>…
How to Decouple Front-End from Back-End with Secure APIs for User Management in Blazor Web App (.NET 8)
Hello, I'm used to creating Blazor Web App projects in .NET 8 with "individual accounts" and interactive render mode set to Auto, with per-page interactivity. The advantage of this setup is that all the account management mechanics are…