Issue I’ve been making a webapp in Blazor and have been stuck on this error, which I cannot find any documentation of. I wrote in my razor page: @foreach (App app in AppService.AllApps) { <tr> <td>@app.Title</td> <td>@app.Price</td> </tr> } And
Continue readingTag: blazor
[SOLVED] Process with an Id of XXXX is not running | Visual Studio 2022
Issue I’ve had this problem since this morning and have tried various options, but haven’t found a solution to my problem yet. The problem is that every time I want to start my Blazor web application I get this error
Continue reading[SOLVED] Unbound breakpoints when debugging in Blazor Webassembly when using certain attributes/classes
Issue I’m developing a modular blazor application (5.0.2) using VS 2019 (16.8.4), which is structured as follows: a "Main" Solution, which consists of RCL Wasm project to startup the application several "Sub" solutions which reference the Main RCL (Base components,
Continue reading[SOLVED] Why Blazor Website is not working in Apache?
Issue I have a WebServer (CentOS) with Apache, it has a a Blazor WASP app, if the DocumentRoot is set directly where the index.html is, the app works, but if it isn’t, it will read the index.html and show the
Continue reading[SOLVED] C# XmlDocument.Load Issue
Issue I plan to use XmlDocument.Load() when a user clicks on a file from an open window dialogue. I am testing it with a absolute path XmlDocument.Load("C:\\filename.xml"); This errors out. Chrome Developer tools states it cannot find the file and
Continue reading[SOLVED] blazor wasm + oauth + api =same token for api?
Issue Im building some blazor wasm , i have oauth service in corporate network that i use for login i recive some token with payload of the user data and now question is should i use same token i recived
Continue reading[SOLVED] Using Azure SignalR invalid negotiation response received
Issue I am currently trying to use Azure SignalR in my Blazor app but I am currently experiencing difficulties which what looks like authentication errors. I have set it up in my Program.cs file to include the Azure SignalR: builder.Services.AddSignalR().AddAzureSignalR();
Continue reading[SOLVED] Can not publish Blazor wasm to azure anymore
Issue i just wanted to publish my changes to my .Net6 blazor wasm app to azure to update it like i did a dozen times. Since yesterday that does not work anymore. I can build and run it locally with
Continue reading[SOLVED] Blazor server hosting, null reference exception on getter
Issue I’m testing blazor server (.net 6.05) on one of our projects and I have a following code: @page "/" @using Microsoft.EntityFrameworkCore @using Microsoft.JSInterop @inject IDbContextFactory<MyDbContext> DbContextFactory; @code { [Inject] private IHttpContextAccessor HttpContextAccessor { get; set; } = default!; MyDbContextContext
Continue reading[SOLVED] Blazor Azure AD B2C net 5 Error trying to login
Issue I’m following the instructions for setting up a Blazor Web Assembly hosted using Azure AD B2C located here: https://docs.microsoft.com/en-us/aspnet/core/blazor/security/webassembly/hosted-with-azure-active-directory-b2c?view=aspnetcore-5.0 When the login is clicked a message appears stating ‘There was an error trying to log you in: ‘Error: could
Continue reading