Content
dotnet blazor maui UAE PASS authentication unable to redirect to the mobile app after authentication is done
I'm Developing the app with UAE pass authentication using Maui Blazor technology(C#). successfully obtained the authorization code from UAE Pass but i am facing difficulties redirecting back to mobile app. Please find the attached file. I have…
How to fix start up white screen problem
I was restore my pc after setting up I was unable get further I was stuck at the services section it's shows notting
How to Deploy .Net Maui Windows application in Intune using Line of Business Deployement?
I have a .NET Maui Application and I published it into Side Loading package. In the created package there is one main .msix file and another Microsoft.WindowsAppRuntime.1.2.msix inside a dependency folder. I am using Intune Line of Business deployment to…
Error when try read data from Excel File in ASP.NET MVC
In an ASP.NET MVC app, I am trying to read data from Excel file but I get this error: The error appears in production mode, but in development mode there's no problem. I am making host on Local Host on my computer Microsoft Excel cannot access the file…
Asp.Net MVC5 - Static Html Files Authentication?
Hi, I am working on Asp.Net MVC5 (.Net Framework 4.8 & C#) web application. The application is hosted in azure app service. The project solution has a "Help" folder, and the contents of the help folder is static files only i.e., html files.…


Datareader vs Dataadapter vs something else
HI , i have been recently working on the c# code to pull the data from sql server database but have been stuck at creating a generic method which can retrieve large data from database . The term generic is used because my application have 20 forms and…

Reducing opacity of swipe images
How do I reduce the opacity of images in a swiper container, except for the image that is swiped to display in the middle? For example, as the images are swiping through, any image that appear in the middle will be clear while the other ones beside will…
Emulator error in Visual studio 2022
Hi Team, I am trying to run a Xamarin application using Visual Studio 2022 community. From Android device Manager, I have created an emulator with below configuration - Processor - X86_64 OS - Android 13.0 - API 33 While running it getting below error…


Binding library with xcfranework
How to use xcframework in xamarin ios binding library
Controls inside controls
Hi , can someone please share some idea by which i can create a list which shows all the parent controls in a form with all the child controls inside them .

MAUI: Listview isvisible property is not working from the code behind?
I am trying to show the selected image or file on my UI on a listview. So initially the listview's IsVisible I set to false and after picking item I set the IsVisible property to true. My problem is after picking item the listview is not visible on the…
Background worker not setting textbox.backcolor in UI thread
[windows forms, dotnet 4.8.1 VB] I have several applications that use a common non-indexed "message log" database file to communicate - works great! Each application tells the dashboard app when it starts, reports progress, completes, and is…
How rendering handling concurrency in razor page from API response?
Hi, I'm following up on all the discussions I've had about handling concurrency errors. 1 - I would like to know if it is possible to handle concurrency errors in a context where I have a DataGrid in edition mode on a line? 2 - I have defined a put…
Win32 EnumFontFamiliesEx doesn't call the callback I provide
I wrote a class to test if a WPF font is fixed width. But the only way I could find to do that was to get the LOGFONT and test it. So I went through a lot of P/Invoke hoops to get there. I created a DC for the display and asked it to enumerate the…

How to subscribe/listen to System.Diagnostics.Metrics based instruments out-of-proc programmatically?
I have bunch of custom metrics created using System.Diagnostics.Metrics. I want to know how to subscribe them for viewing out-of-proc programmatically. I know we have dotnet-counters CLI tool but I have requirement to show it some specific way…
Event ID 1309 ASP.NET 4.0.30319.0 Warning
I put the whole error below, but before I continue there's a phrase in this error people are going to focus on and it's NOT the problem. There is no trust relationship problem with the server. What I don't doubt is at issue is communication to the…
best practice for Application Insights with Blazor Server
i have seen multiple posts about Blazor Web Assembly and Application Insights but almost zero on how to best use application insights with Blazor server. is the only way to treat blazor server like web assembly ? are there any guides on how to get full…
Jwt Token implementation not working on azure app service when using secured private key
I have created a .net core application in which there is implementation of Jwt token generation and then use it for authentication. The token generation is using a private key to generate the key and public key to validate the key for protected routes.…
ASP.NET Web Core with .NET Core 7.0 Error While Generating Scaffolding
In an ASP.NET core project built on .NET Core 7.0 I am trying to scaffold the login page with the following steps: I right click on the project, and select Add -> New Scaffolded Item I select Identity and Click on Add Then I choose…
PrintToPdfAsync with custom header and footer. How can I take full control of these elements?
var setting = webView2.CoreWebView2.Environment.CreatePrintSettings(); setting.ShouldPrintHeaderAndFooter = true; setting.HeaderTitle = headerText; setting.FooterUri = footerText; await webView2.CoreWebView2.PrintToPdfAsync( pdfFile, setting ); …