What could be the reason for the disappearance of the ApplicationHost.config file in IIS?
When I try to perform tasks like restarting or stopping sites in IIS Manager, or editing SSL bindings, or changing settings, a file write error occurs and the operation fails. The file is not visible in the system32/inetsrv/config/ directory. It's…
Windows development | Internet Information Services
Developer technologies | ASP.NET | Other
How to target .NET Framework 4.0 in VS 2022 on Windows 11?
Working on some old projects targeting .NET Framework 4.0. I used VS 2022 to open the solution and was told to install 4.0 targeting pack. I can't find the download link on the dotnet website, nor the installation option in Visual Studio Installer. …
Developer technologies | .NET | .NET Runtime
Developer technologies | Visual Studio | Debugging
Windows for business | Windows Client for IT Pros | User experience | Other
Developer technologies | C#
ListView events arent always triggered.
Hello, I am not sure if I selected right tag for my topic, but there is not present UWP tag naw. I have problem with ListView. If my ListView has many rows (about 150+), some events are sometime not triggered (but sometime they are triggered as well). If…
Developer technologies | Universal Windows Platform (UWP)
Faield to start deployed web application
hello community, I am a beginner in WEB application development. During my first trial, I met with an issue when start the deployed web application onto IIS running on Windows 11. The situation is, I get below error when open the application in the…
Developer technologies | ASP.NET | Other
Dynamic NavMenu
I am trying to implement the default NavMenu.razor with a number of NavLinks where one of the items is not visible by default. It should only become visible after an authenticated user belonging to a specific role condition is true. My code snippet is…
Developer technologies | .NET | .NET MAUI
How to change the image cshtml.
I am using several images on the home page of my project. The path of which is always using the same name. That is, even if the image changes, the image path remains the same. The problem is that when I upload the image for the first time, the correct…
Developer technologies | ASP.NET | ASP.NET Core
why ViewData is encoded for unicode text in asp.net web?
ViewData["Title"] ="xxxxxxxxxxx"; it is 首页 why?
Developer technologies | ASP.NET | ASP.NET Core
Creating a reusable form using C# custom "User Control"
I'm trying to create a layout / form that can be reused on other forms. I think I'm in the right to utilize a "User Control" (screen captures below). I populate the control with some components, save it, then try to bring it onto the main…
Developer technologies | Windows Forms
Help Needed for Connecting POS Printer via USB in UWP App
Hi Team, I have implemented POS printer functionality in my UWP app. When I connect the POS printer using Bluetooth, it works perfectly. However, when I connect the printer via a USB cable, I’m unable to find a way to detect or connect to the printer…
Developer technologies | Universal Windows Platform (UWP)
Unable to Add Scaffolded Items with Visual Studio when Developing an ASP.NET Project
I'm trying to learn ASP.NET with Visual Studio 2022 Community and was following this guidance: https://learn.microsoft.com/en-us/aspnet/core/mvc/overview?view=aspnetcore-9.0 I followed the steps but finally unable to continue due to it keeps showing…
Developer technologies | ASP.NET | Other
Blocked from accessing native Azure Speech SDK (C++/x64) for Unreal Engine integration—installer reports success but does not install required binaries (no speechapi_cxx.h, .lib, or .dll). Project is C++ only; not using .NET or NuGet.
Hello Azure Support, I’m a developer working on a native C++ integration of Azure Speech Services within Unreal Engine, and I’m currently blocked from accessing the correct SDK. Despite multiple attempts, I have been unable to obtain the native C++…
Developer technologies | C++
Which certificate does the VS installer use for verification of vs_installer.opc
I am trying to install the VS 2022 Build Tools on my build server. However, during installation, I am receiving the following error on the bootstrapper logs: [16a0:0011][2025-06-25T06:41:39] Download requested:…
Developer technologies | C#
Why does DI container retain references to transient instances that are IDisposable?
https://learn.microsoft.com/en-us/dotnet/core/extensions/dependency-injection-guidelines#disposable-transient-services-captured-by-container says, "by default the DI container will hold onto these references, and not Dispose() of them until the…
Developer technologies | C#
how to keep the decimalpoint 3 -5 of a float?
float x=393f,y=393f; x-y may be a value not zero. bool IsInLine(float x,float y){} this is to determin weather x,y is in my line but if I pass parameter it will compute error. the value may be a integer and same. but if x-x1 or x-y is not zero. I think…
Developer technologies | .NET | .NET Runtime
How to upload and store files in database in blazor web app
How to upload and store files in database in blazor web app
Developer technologies | ASP.NET | Other
Cannot Access Microsoft 365 Developer Sandbox — No Admin Rights / No Tenant Provisioned
Hi Microsoft Team, I am a Visual Studio Dev Essentials member using my business account (******@recruiter-services.com). I qualify for the Microsoft 365 Developer Program sandbox, but my account was never provisioned with a tenant. As a result, I: …
Developer technologies | Visual Studio | Setup
Are BinScope checks like ATLVersionCheck and GSCheck applicable to C# applications?
Dear Team, I ran Microsoft BinScope 2014 on a C# application (.NET managed code) and observed several failed checks including: ATLVersionCheck ATLvulnCheck CompilerVersionCheck GSCheck GSFriendlyInitCheck GSFunctionSafeBuffersCheck RSA32Check …
Developer technologies | C#
Allocate / free memory with Visual Studio C++
I have a very simple program int main(void) { double* myVect = new double[10000000]; wait(2); // wait for 2 seconds delete[] myVect; wait(2); return 0; } I execute this program in Debug mode, put a breakpoint on "return 0" and look at the…
Developer technologies | C++
Is Stack Protection Header applicable or configurable in C# applications?
Dear Team, I’m analyzing a C#application and noticed that tools like Process Explorer or PE header inspectors show "Stack Protection: Disabled" for the executable. I would like to confirm the following: Is it possible to enable stack…
Developer technologies | C#
Good installer for visual studio 2019 c# projects
Still using Visual Studio 2019 professional. I have several independent solutions (single project solutions). I need to create an installer that installs 6 different projects on a computer. Right now, I have a single deployment project in each…