Content
Visual studio unresponsive when debugging .net MAUI on Android Emilator
I have a .net MAUI app that works fine when it runs in debug mode. But when I put in a breakpoint in my code and wait for the debugger , Visual studio becomes unresponve and i keep getting the Visual Studio is busy popup But as soon as i close the…


Help with converting Blazor Entity Framework Sample App to use SQL Server instead of Sqlite
I am new to Blazor. I want to change the ASP.NET Core Blazor Server with Entity Framework Core (EF Core) Sample Application from Sqlite to SQL Server. I created the Contacts table in Sql Server based on the Contact.cs model. I modified the Program.cs…


How to deploy to a virtual Directory using GitHub action "azure/webapps-deploy"
Does anyone know how to deploy to a virtual Directory using GitHub action "azure/webapps-deploy"? I don't see the equivalent in the GitHub action. In Azure DevOps you were able to do this:


Azure is decoding characters in the URL before reaching the application
In our backend API, we have an endpoint with a path variable and we need to be able to support certain special characters. To accomplish this, we are encoding the path variable with UTF-8 before hitting the endpoint. This works for most special…


why this Storyboard in DataTrigger introduce the runtime exception?
I am trying to complish a Custom Control which has a DataTrigger with animation in my project, but I always hit a InvalidOperationException failure. So I abstract the logic into this repo . I found the same animation works well in the EventTrigger, but…


How hosting and deploying my application in Folder?
Hi, I made an application with blazor wasm hosted .net6 core. I would like to publish it in local Folder and have acces to my app in my browser. Also, I would like that some users can use my app in browser. First I would like to know if it's…


how to get how many client login using the same user?
I am using cookie authentication. one user can login in many clients. I want to know how many login using the same user.


Grocery list app
I am wanting to build a grocery app that automatically calculates what groceries you should buy and list the values on a separate content page. There is a registration page that askes the user questions like how many people in household, shopping…


angular Cors Response to preflight request
my system is angular client side and .net core backend. i'm trying to migrate the authentication process to azure AD to follow my corporate's SSO. after enabling Azure AD on client side using MSAL and on the backend following openID. from the client side…


How to fill color in a closed area in wpf
I drew arcs which generates several closed area. I'd like to fill color in the close area like following. How to do this?
Keep entry focus on button click
Hi, I want to keep focus in an Entry control in order to keep the keyboard open when I press a button next to it. I've tried to do it by calling Entry.Focus() when I press the button but it causes the keyboard to move up and down. I would rather the…


How To download from ftp site using http client
I cannot find a SIMPLE EXAMPLE anywhere that shows how to use (recommended) HTTPCLIENT to replace the now OBSOLETE WebCclient, WebRequest etc. I cannot find a SIMPLE EXAMPLE anywhere that shows how to use (recommended) HTTPCLIENT to replace the now…


comment creer une application ou site web?
bonjour je cherche a faire une formation dans le développement informatique, mon objectif c'est devenir capable de : developper un site web developper une application web developper une application mobile developper une application deskop …


CollectionView template not support RTL
Hi, CollectionView template not support RTL. I attached the file:עברית.txt Please see the code: The results is: txt.עיברית <CollectionView ItemsSource="{Binding Data}"> <CollectionView.ItemTemplate> …
how to custom title view in maui?
I am not using shell MainPage=new MainPage(); how to custom the title view and the closebutton?
autofac dependency injection in .net maui
HI, I am working on migrating xamarin forms application to .net MAUI application. In xamarin froms application i am using autofac dependency injection. can we use autofac dependency injection in .net MAUI. if YES how to re use that code?


how to validate hidden doms
I have a hidden value <input type="hidden" asp-for="ImageUrl" /> <span asp-validator-for="ImageUrl" /> how to validate it? jquery.validate will not validate the hidden doms.
ERROR: How do I insert into an image column if no image is present in image control?
How do I save an empty image data into database if the image control has no image? But if the image control has image data, the it should save as well. The xample is that I have a web page that when the page loads, data is displayed from a database table…


Microsoft Graph .NET SDK with Delegated Access
Hello, I'm kind of overwhelmed by the whole Azure and Graph platforms and could use some advice for directions on where to look for my specific use case. What I'm trying to accomplish is to: Have a C# class library that will act as a Graph client for…


Host and deploy a blazor wasm application in Folder
Hi, I made an application with blazor wasm hosted .net6 core with standard identity Duende I want to publish it in local Folder and have acces to my app in my browser. First I would like to know if it's possible? I publish it to use Folder item; I run…