Content
Is it possible to identify monitors at runtime using the Identify system function?
Hi, I'm working in a multimonitor environment and I need to know at runtime which monitor my application is running on, so I need the numbers used by the display settings app. I tried different methods to have this information (for example using the…
show total and grand total without postback
Hello This Is my sql data SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Table_1]( [ID] [int] IDENTITY(1,1) NOT NULL, [Field1] [varchar](50) NULL, [Field2] [varchar](50) NULL, [Field3] [varchar](50)…
When will .NET Core 8 web apps run on Azure?
I'm testing out .NET Core 8 and trying to deploy to Azure. I created a new Blazor web app in Visual Studio. I go to publish the app, creating a new Azure Web App. Once published, I see "HTTP Error 500.31 - ANCM Failed to Find Native…

Flyout problems
Ok so this is kind of weird, I have a HomePage and a Registration page. They are registered in my appShell <ShellContent Title="loginPage" ContentTemplate="{DataTemplate view:LoginPage}" …
MAUI Back button navigates to an empty page (Android)
Issue: We are converting a large app from Xamarin to MAUI. When we tap a back button on a page, this code is called: xxx.Navigation.PopAsync() The next page appears to load Ok, but it is completely white. Potential fix: [Bug] NavigationPage doesn't work…
Using SignalR and SqlDependency with Asp.Net Core 8.0 N-Tier Architecture
Dear all, I am developing an Asp.Net Core 8.0 API project. There are 5 layers in my project, --EntityLayer (Class Library) --DataAccessLayer(Class Library) --Business Layer (Class Library) --DtosLayer(Class Library) --ApiLayer (Core 8.0 API) …
How to fix datagridview designer not returning idesignerhost service in user control
I have a user control which contains a DataGridView. I add a property "Columns" to the designer with <Editor(GetType(MyColumnCollectionEditor), GetType(UITypeEditor))> …
SQL Server Mangement Studio a cessé de fonctionner
Bonjour, Je me permets de vous solliciter en urgence concernant un problème critique que je n'ai pas arrivé à le résoudre depuis un certain temps. mon problème est au niveau du SQL SERVER 2012. au moment de l'exécution d'une nouvelle requête au niveau de…
How to pass data between a razor page (*.cshtml) and Razor component (*.razor)
How Do I pass data between a razor page (.cshtml) and a razor component (.razor). From a razor page (*.cshtml) I save some data using shared services and then I move to *.razor component using LocalDirect. I thought I would inject the service in *razor…
how to stop css isolation in asp.net core?
I do not want to use it.
MAUI SQLLite App not working on Android (apk)
The below quiz app is working in Windows but not in Android , I tested on my Android phone using apk file. It stopped working after I added sqllite , please suggest on this. I used the version sqlite-net-pcl 1.6.292 private async Task…
iOS App screen size problems after upgrading to .net8.0
I have noted that after an upgrade to .net8.0 that my iOS app has a size issue. This persists even after returning to .net7.0 and gets resolved after reverting code before the upgrade. After some digging myself i have noted that some files are not being…
MAUI: 'Controls' could not be found and mipmap/appicon_round not found.
I am getting below errors when rebuilding the app in release mode before creating APK file. Severity Code Description Project File Line Suppression State Error APT2067 failed processing manifest. MyProjectName C:\Program…
I encountered an issue when trying to create a .NET MAUI project as .NET 6 doesn't seem to be available.
I recently installed Visual Studio 2022 (version 17.8.2) and opted for the .NET 6 framework during installation. While attempting to create an ASP.NET Core project, I was able to select .NET 6 successfully. However, I encountered an issue when trying to…
AZ-900 Badge Missing
HI MS, I Passed AZ-900 Exam . Got a cerfification but no badge. Best regards, Steve Dong

Date format changing
I used Visual Studio ASP.NET Core 8 MVC, and in my project I enter the date in input method and debug when the date changes to month. For example, debugging with the date 15.10.2023 shows the date 0001.01.01, and debugging with the date 5.6.2023 shows…
Why does SSL connection to grpc server fail if the client is not running as admin and using client certificates?
I have a grpc server hosted in a Windows Service based on the grpc sample Greeter. Server Code: var builder = WebApplication.CreateBuilder(args); builder.Host.UseWindowsService(options => { options.ServiceName =…
Can the code for this example of EF core be written like this?
Can the code for this example of EF core be written like this? public partial class Hlabel { public int Hid { get; set; } public string Hname { get; set; } = null!; public string Htime { get; set; } = null!; public virtual…
How to fix error "No webpage was found for the web address:" when I am opening the url for my app service.
Hi community, I have created one dotnet core web app. Pushed it to repos in azure devops, created a pipeline and deployed it on azure web app services. After creating the release and publishing it on web app, when I am trying to open the URL of web app,…