.Net SmtpClient protocol error?
Hi, having an issue sending EMails using System.Net.Mail.SmtpClient to a mail server using postfix and postscreen using postscreen_greet_action = enforce. It seams, that the SmtpClient fails to process all greetings lines prior to sending the EHLO…
Developer technologies | .NET | .NET Runtime
DeniedBySystem returned when i was used PhoneLineTransportDevice::RequestAccessAsync
I try to requset PhoneLineTransportDevice access with below code. It works fine in my Win10 22H2, but failed when i try to run in my Win11 23H2. would you like to give some advice? 1, Why it was failed DeniedBySystem in win11 ? 2, How to solve it…
Developer technologies | Universal Windows Platform (UWP)

How to achieve that properties set in Myprops.props override those set for the project?
I want to reuse Visual Studio 2022 project settings, but have trouble to understand the docs. There is said: "Properties in a property sheet are overriden if the same property is set directly in the .vcxproj file. I assume that before adding a new…
Developer technologies | Visual Studio | Other
Content Security Policy Violations happening for whitelisted domains only for Netherlands and Switzerland users.
I have a csp policy where I have whitelisted all the domains from which I want to load the content to my application and have added only default-src directive which is fallback to all the other directives. I have tested the policy on lower…
Developer technologies | ASP.NET | ASP.NET Core
How to fill a ListView?
Dear all, I'm a beginner in C#. Could anyone tell me how to fill a ListView?
Developer technologies | C#
Error squiggle not showing in visual studio code
Can't see error squiggles I have three files in my new C++ empty project, two of which are main.cpp and functions.cpp. I can see error squiggles in main.cpp but it is not in functions.cpp. The show squiggle option is on.
Developer technologies | C++
Developer technologies | Visual Studio | Other
How to Integrate .net core application to see logs in Azure Kubernates Cluster container insights
How can we integrate to see logs of our .net core API application in deployed Azure kubernates cluster container insights. what are all the code changes to be done to see errors and exceptions in container insights. I got to know that WriteTo.Console() ,…
Developer technologies | ASP.NET | ASP.NET Core
Azure Kubernetes Service
Automatic UI updates with Blazor
Using a .NET 8 Blazor WebApp, I hope to build an application whose pages automatically send updates to all users. For example, when Joe adds a payment to an invoice, Sue (who is viewing the same invoice) should see the new balace reflected on her screen…
Developer technologies | .NET | Blazor
Developer technologies | .NET | Other

How To Customize The Finger Print Dialog In Maui
Hi, i want customize the finger print dialog in maui .net 8 for example : set margin or change text color or ... this my codes private async Task AuthByFingerPrint() { // In constructor: var request = new…
Developer technologies | .NET | .NET MAUI
Developer technologies | .NET | Other
Docker Build fails when I try to RUN apt-get
I am upgrading my application from .NET 6 to .NET 8. I am using a pod with ubuntu to compile and build my application due to compatibility issues with RHEL7. FROM mcr.microsoft.com/dotnet/aspnet:8.0 RUN apt update --fix-missing && apt install -y…
Developer technologies | ASP.NET | ASP.NET Core
Does NumberBox.Value NaN not equal to double.NaN?
When I use NumberBox (WinUI2), I have trouble as follows: if (NumberBox.Value == double.NaN) // It keeps false. { // Some action codes. } Is there any bug about this equation? I would appreciate it if anyone could solve this problem.
Developer technologies | Universal Windows Platform (UWP)
Developer technologies | C#
Simple Math Opertation
Hello I need to calculate how many parts an SMS text is, the text is US Ascii so here's the long code with minimum of 15 lines: .Length > 0 AndAlso .Length <= 160 Then Return 1 .Length > 160 AndAlso .Length <= 320 Then Return 2 .Length >…
Developer technologies | VB
image not loading in modal popup imageurl in asp.net c#
i am trying to load image in image button through modal popup. The problem is modal popup is showing, but image not loading which means it is blank window. i am storing all the images in different server and application hosted in another server. what is…
Developer technologies | ASP.NET | Other
Developer technologies | C#
How to debug the MAUI app in the Android work profile.
Hello Team, I was working on one of the samples of Microsoft. - https://github.com/Azure-Samples/ms-identity-dotnetcore-maui/tree/main/MauiAppWithBroker which crashing when installed in the work profile. Tried to debug it using the visual studio. Is…
Developer technologies | .NET | .NET MAUI
USB on MAC
Hi Bruce, Maui approach is to run windows in a vm, and use visual studio for windows. Is there USB in MAC ? How I protected the app for malicious operation that only the app will have access to it ? Thanks,
Developer technologies | .NET | .NET MAUI
vs 2022 – copy/paste from vs to ms word is not in color
Hi, coping text from vs 2022 to ms word shows no color. This happened in vs 2017,19, but fixed that. I cannot seem to find the fix for vs 2022. Here is what I tried. Download power tools with productivity tools 2022. …
Developer technologies | Visual Studio | Other
Send Emails after Business Trasnaction in Azure
Hi All, We have a requirement to send emails containing business data (and contract file attachments) to external users (outside Org. domains) from applications hosted in Azure. Our backend services are either Az Functions or Services hosted in Azure App…
Azure Functions
Developer technologies | C#
How to solve Azure Devops duplicating upt to 10 times what I am uploading via Import using Queries
When I use a prepared CSV sheet to import Taks under Product Backlog itms in Azure DevOps, the system multiplies/duplicates all new items up to ten times. This makes the upload functionality totally useless. How is this solved?
Developer technologies | Visual Studio | Other
what's the difference between windows forms app and windows forms app (.netframework) in vs 2022?
what's the difference between windows forms app and windows forms app (.netframework) in vs 2022?
Developer technologies | Windows Forms
Why drawing 2 Rectangles on a PictureBox by calling twice a "Function for Drawing" shows only the 2nd Rectangle?
Hi All, Given below is my Function (a Sub) for drawing a "Rectangle" on a "PictureBox". I wanted to draw 2 Rectangles side by side. When I called the function for each Rectangle, only the 2nd Rectangle was drawn, the 1st Rectangle was…