Response status code does not indicate success: 404 (Not Found)
I get the following error while calling an api in my Blazor application: Following is the code where the error is pointing: And following is the calling api where request is made: What went wrong here? Any suggestions? Thanks, Puneet Chandiok
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | .NET | Blazor
Developer technologies | ASP.NET | ASP.NET API
Developer technologies | C#

visual studio 12 key
How do I purchase a visual studio 12 key? Downloaded Visual Studio and installed but has expired and is asking to enter the key
Developer technologies | Visual Studio | Other
CarouselView Navigation Behavior Changed After MAUI Essentials 8.0.83 Update
Hello MAUI Community, I'm experiencing an unexpected change in CarouselView navigation behavior after updating to .NET MAUI Essentials version 8.0.83. Previous Behavior (Before Update): When clicking an indicator dot, the CarouselView would directly…
Developer technologies | .NET | .NET MAUI
Microsoft Teams | Microsoft Teams for business | Other
.NET MAUI App Not Opening on Android Emulator When Offline
I am encountering an issue with my .NET MAUI application (https://learn.microsoft.com/en-us/dotnet/maui/tutorials/notes-app/?view=net-maui-9.0) where it fails to open in the Android emulator when the internet connection is turned off. The application…
Developer technologies | .NET | .NET MAUI
When will the Dynamics 365, version 9.0 Report Authoring Extension be available for vs2022?
When will the Dynamics 365, version 9.0 Report Authoring Extension be available for vs2022? Up untill now the latest version it is available for is vs2019.
SQL Server Reporting Services
Developer technologies | Visual Studio | Other

WinUI3: How to print framework element using cpp
My app have to windows. Depending on which the print is called from we getting the actual hWnd. My issue is how to to get an instance of printManager or is there another way to print from winui 3? // file: MainWindow.xaml.cpp ... #include…
Windows development | Windows App SDK
Developer technologies | C++
Unable to detected visibility of Onscreen keyboard using user32.dll
Below code is always showing on screen keyboard as visible. Even if it is closed. using System; using System.Diagnostics; using Microsoft.Win32; using System.Runtime.InteropServices; using System.Threading; namespace CSharpTesting { class Program …
Developer technologies | Windows Presentation Foundation
Developer technologies | C#
How to fix Azure App service F1 free tier Web API The SSL connection could not be established & Cannot determine the frame size or a corrupted frame was received
I have migrated a .NET core 3.1 Web API deployed on Azure App services. I migrated it to .NET 8 version and deployed to same Azure App services. We are using the app services plan F1 free tier. Same was used for .NET 3.1 API also, earlier it is used to…
Developer technologies | ASP.NET | ASP.NET Core
Azure App Service

How do I save file on form submit
Hello, As mentioned in the title, I want to save the file to the server. In the past, we were using SaveAs but in Blazor I can't get a reference of PostedFile directly. <div class="row pb-3"> <div class="col"> …
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | .NET | Blazor
Developer technologies | ASP.NET | Other
Identify the users with minimum votes and allocate new votes to that user in Synapse SQL
Hello Experts I came up with one problem where I am looking for a solution as I have two tables: Table1: Users |UserID | TotalTasks| | A3 | 12 | | A4 | 14 | | A5 | 11 | Table2: Tasks | TaskID | NewTask| | 1 …
Azure Synapse Analytics
Developer technologies | Transact-SQL
SQL Server | Other
Time Picker Focus and UnFocus is not working
Hello, There is a known issue for DatePicker focus unfocus not working on .NET MAUI 8 Android. The below code helped me to solve the date picker issue:- private DatePickerDialog mDialog; protected override DatePickerDialog…
Developer technologies | .NET | .NET MAUI
How do I make a richTextBox have a transparent background / show the image beneath it? (C#, Windows Forms App)
Hello, as per the title, I want to make the richTextBox in my project transparent, or have a way to show the image beneath it. Whenever I try to set the backcolor to transparent, i always get "Property value is not valid" with "Control…
Developer technologies | Windows Forms
Developer technologies | C#
Maui project - Microsoft.AspNetCore.Aoo didnt work with the APP
1-There was no runtime pack for Microsoft.AspNetCore.App available for the specified RuntimeIdentifier 'iossimulator-x64'. 2-There was no runtime pack for Microsoft.AspNetCore.App available for the specified RuntimeIdentifier 'maccatalyst-x64'.
Developer technologies | .NET | Xamarin
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | ASP.NET | ASP.NET API
Developer technologies | .NET | Other
System.NullReferenceException: 'Object reference not set to an instance of an object.'
I would like to insert product 2 or anymore but Model.Selects.get returned null! I do not understand how I resolve this problem. Can you help me please! Thanks for your support
Developer technologies | ASP.NET | ASP.NET Core
Built a windows app with Visual Studio 2022, but app is not opening
Hello everyone. I created a project using source code in visual studio 2022. After editing the files, I clicked the build option. The application was built successfully with no error messages. But, when I browse the installed folder and try to open the…
Developer technologies | .NET | .NET MAUI
Windows for business | Windows Client for IT Pros | User experience | Other
how is way to create menus on a aspx page
i am using vb.net 2022 and renamed the extantion of a form to aspx now how is posible to create menus on this page
Developer technologies | VB
Developer technologies | ASP.NET | Other

How to share "System.Web.HttpContext.Current.Session" between ASP.NET and .NET CORE application
Dear All, I would like to share session values between ASP.NET and ASP.NET CORE application. It is working fine only when the session value is set inside "Session_Start() method in Global.asax.cs. When I try to set session value in an other action…
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | ASP.NET | Other
Developer technologies | C#

Converting BinaryFormatter Binder to DataContractSerializer
How can the Binder property from BinaryFormatter be converted to work with DataContractSerializer in C#? For example, the code snippet below uses BinaryFormatter: var bf = new BinaryFormatter(); bf.Binder = new ClassXYZ(); // ClassXYZ inherited from…
Developer technologies | C#
Question: Issue Fetching Updated RAW Data from GitHub Gist Using HttpClient
Hi, I’m working on a C project where I fetch a JSON file from a GitHub Gist using HttpClient. However, even after updating the Gist, the HttpClient.GetStringAsync() method keeps returning the old data. I suspect this issue might be related to…
Developer technologies | C#
preventing c# listview items from disappearing
I have a ListView in a form in c#. There was info about an error in the ListView implementation that causes the items to disappear the first time the mouse hovers over the ListView, and there is a solution to prevent that which works fine. However, my…