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
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
Publish process does not write to target path
At this time I have discovered the cause. I will detail the issue and the work around. Our process: we use VS2022 and publish to a targeted local folder. Situation: recently I received a new Azure VM, for development environment, on which I installed…
Developer technologies | Visual Studio | Other
why ViewData is encoded for unicode text in asp.net web?
ViewData["Title"] ="xxxxxxxxxxx"; it is 首页 why?
Developer technologies | ASP.NET | ASP.NET Core

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#
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#
Can we prevent Narrator from speaking UI control's name?
Hello, I'm working on WinUI2 app with XAML island in purely C++ (no XAML code). I want to support Narrator screen reader for my app. I tried to set accessibility props (name and helpertext) for UI controls. While this props are being read by Narrator, it…
Developer technologies | Universal Windows Platform (UWP)
.NET Core Profiler Crashing on 32 bit Application Environment
Hi Team. I have developed my own .NET core profiler using VS 2019. To load my profiler, I have set the environment entry in the web.config file. <environmentVariable name="CORECLR_ENABLE_PROFILING" value="1" /> …
Windows development | Internet Information Services
Developer technologies | .NET | .NET Runtime
Positioning UWP ContentDialog on top of AppWindow.
In UWP app , I have a AppWindow which is opened from the main window with the below code. var appWindow = await AppWindow.TryCreateAsync(); var frame = new…
Developer technologies | Universal Windows Platform (UWP)
Azure web app call wcf 404
Why is it that after deploying an asp .net web app to azure web app, https://hk-np-focz-aps-ipe-dev-grg5a4dndackdrge.eastasia-01.azurewebsites.net/PriceTag.svc?wsdl can be accessed, but the call interface returns HTTP/1.1 404 Not Found. The local call to…
Developer technologies | ASP.NET | ASP.NET API
SAML Access Denied from Azure AD - Localhost Sustainsys Setup
I am trying to set up an SAML based authentication using ASP.Net framework 4.8. But after login i am returning back to my localhost site and getting error like https://localhost:44353/Saml2/Acs?error=access_denied . I have assigned users and all the…
Developer technologies | ASP.NET | ASP.NET API
Your Teams app is an absolute disaster. It’s beyond frustrating — I don’t receive photos or messages on my computer, and they randomly show up on my phone, if I’m lucky. This is not a one-time glitch, this is a consistent, widespread failure. Everyone I k
Your Teams app is an absolute disaster. It’s beyond frustrating — I don’t receive photos or messages on my computer, and they randomly show up on my phone, if I’m lucky. This is not a one-time glitch, this is a consistent, widespread failure. Everyone I…
Developer technologies | Universal Windows Platform (UWP)
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++
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
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++
How can I fix the 'Unable to download installation files' error in Visual Studio Installer? (Theres no Internet issue)
just downloaded the installer from the site , clicked on the installer , after a few seconds , this , and btw there is no issue with internet
Developer technologies | Visual Studio | Setup
DLL file not found when invoking function from Excel/VBA
I'm running Windows 11 with 64-bit MS/Office 2021. I have a very large (>25KSLOC) Excel/VBA application with a helper DLL written in C and compiled by Visual Studio 2022. The last time I used the app was May 4, 2025, and it worked perfectly. Today,…
Developer technologies | Visual Basic for Applications
Microsoft Visual Studio Installer Projects 2022 - The location where the file is opened is invalid
hello, ,Visual Studio 2022 : 17.14.7, I created a shortcut in the User's Desktop node, question : “Right click mouse” -> "attribute" -> "The button to open the location of the file is invalid" "Right click mouse"…
Developer technologies | Visual Studio | Extensions
[Visual Studio 2022] Adding a Project Reference fails
Greetings All, I have a problem with Visual Studio 2022. Firstly, I should tell you that my VS2022 environment is as follows: Microsoft Visual Studio Community 2022 Version 17.14.3 VisualStudio.17.Release/17.14.3+36127.28 Microsoft .NET Framework …
Developer technologies | Visual Studio | Setup
how or where a sync function in a web API controller can help me?
hi, I just made one web API with core 9 with entity framework and all actions, i found that all the methods are made with a sync. q1) so my question is where or how it can help me , because in my case i call my controllers action methods from java…