Content
chinese characters not displayed correctively in aspnetcore 8 Bazor web app
I have upgraded my Blazor Server App to aspnetcore8. After the upgrade, Chinese characters not correctively displayed when you view page source. see attached screen shot It is greatly appreciated if someone can help to solve the problem!
Razor Visual Studio Syntax Highlighting is no longer working
Hi I updated my visual studio to begin working with .NET 8. However, in doing so the syntax highlighting on my .razor pages has stopped working. Any advice on how to resolve this?
Maui webview .Navigated event is not triggered when source is a blazor website
Create a simple MAUI app with support for eg. android. On mainpage add a webview (NOT BlazorWebView): <StackLayout VerticalOptions="Fill" HorizontalOptions="Fill"> <WebView …
Dot Net 8 Blazor Webassembly not able to handle datatype
@foreach (var schemeSearch in schemeSearchList) { <div class="v-pipe"> <span class="heading">Expense Ratio % </span> <p class="value12 mb-2">@(schemeSearch.ExpenseRatio != null ?…
How to Monitoring and Navigating URLs in Blazor Maui with Social Authentication
I'm currently working on a Blazor Maui app using C# and integrating UAE Pass authentication. In my application, I need to monitor and navigate URLs within a Blazor page, such as Login.razor. I attempted to achieve this using an iframe, but encountered an…
How to use a blazor server app with a web api for authentication?
I've search the web for a simple tutorial for this but I can't seem to find this exact scenario. I have the following projects: WebApi This is a standard .NET 8.0 web api with individual accounts authentication. I've created everything using the…
Using bitmaps from the stream as a source in video tag
Dear Gurus! I'm looking for a suitable way to use bitmap as a source in video . I receive a bitmap from a stream from a camera, convert it to the required format for display with OpenCVSharp. One of the approaches that I found is to use a javascript…
How to implement both a user registration and log in in a blazor webassembly asp.net core 8 using Azure AA B2C
I have followed this guidance: Secure an ASP.NET Core Blazor WebAssembly standalone app with Azure Active Directory…
Blazor server app - sign out - reload warning messge after 230 seconds
we have a asp.net core mvc web application and added blazor server components and deployed to Azure App Service (Windows) its showing reload warning after 230 seconds. can anyone help/advise to resolve this issue?
How to pass data between a razor page (*.cshtml) and Razor component (*.razor)
How Do I pass data between a razor page (.cshtml) and a razor component (.razor). From a razor page (*.cshtml) I save some data using shared services and then I move to *.razor component using LocalDirect. I thought I would inject the service in *razor…
What is the safest (least dependencies) to log startup in a Blazor app on Azure
Hi all; When my Blazor app first starts, before the ILogger system is initialized (or fails initialization), I want to be able to log four things: The very first line in main() - so I know the app started. About to call builder.Build() If there was a…

How to pass data between a razor page (*.cshtml) and Razor component (*.razor)
I have a situation where I have a razor page -sign.cshtml that handles OAuth by using PageModel's OnGetAsync and OnGetCallbackAsync Question #1 How can I do this alternatively just using Razor component (*.razor) instead of ".cshtml"? I also…
MAUI Blazor support for Azure Communication Services
After reviewing the Azure Communication Services Documentation for making one-to-one video calls between two users I did not see any support for MAUI Blazor. What is the current recommended approach for building a video call application using Azure…
Is there a version number for Blazor apps?
Hi all; When I wrote Win Forms apps, there was an AssemblyInfo properties file with the app version number. We set up GitHub to increment that by 1 in each publish. And we then displayed that number in the about box. Does Blazor (server) have this? And…

NET 8 MAUI Blazor: Login with Google Account
Hello to all Bard can't help me, he is in a loop and invents Nuget, which I am supposed to install in order to be able to log in to MAUI via Google Accoutn. But the Nuget does not exist in reality! ChatGPT only gives me outdated information. I can't find…
The type or namespace name 'RenderModeServerAttribute' could not be found (are you missing a using directive or an assembly reference?)
In .Net 8 preview version I was using below code in .razor file @using Server.Models; @page "/movies/signalr" @attribute [RenderModeServer] @inject HttpClient Http This is with blazor signalR render mode. But in the final release version of…
How to implement third party OAuth in Blazor App
How to implement within Blazor server app a third-party OAuth. I know I can do that by creating a Razor View (.cstml) but I would like to see it done in razor component (.razor).
Read sheet2api with credentials
I am used sheet2api to convert spreadsheet to api. https://docs.google.com/spreadsheets/d/1lTfl1mwASBR2DYgtgaO48bxe5pu24RAYMbkcQ8wBoRU/edit#gid=0 https://sheet2api.com/v1/UHC796KdSvqC/testsp I used the below credentials. user id : test password…
How can we get Microsoft's dependency Injection to resolve dependencies within razor files referenced using Microsoft's BlazorWebView within a WPF app?
I am using Microsoft.Extenssions.DependencyInjection to resolve dependencies. I am able to successfully inject dependencies into the MainWindow (I am keeping the scenario simple). But when I reference a razor file with dependencies using BlazorWebView,…
2FA QR code is not generating in Blazor Web app.
using Blazor Web App template and authentication type as individual accounts, 2FA is not generating the QR code. Is this need to be fixed?