373,137 questions
Best practices
0
votes
2
replies
67
views
Positioning Div relative to outer Div
My apologies if the title is not good.
I am on a group project making a DND map that will let the player move around pieces on the board.
It utilizes Jquery-UI for its draggable functions.
Currently I ...
1
vote
1
answer
41
views
TextChanged Postback not firing when pasting input
I’m having an issue with this JavaScript: when I paste a number, the TextChanged postback is not triggered, whereas it works correctly when I type the value manually.
It’s a general control, and the ...
0
votes
1
answer
93
views
Depending DataSeeding in Abp framework
I tried to DataSeed some data, but I got this error: SqlException: The MERGE statement conflicted with the FOREIGN KEY constraint "FK_SubCategories_Categories_CategoryId".
1st I tried to do ...
Best practices
0
votes
8
replies
115
views
What is the best reference to reach advanced stages in .NET?
What is the best reference to reach advanced stages in .NET?
What are the best courses or websites to reach the advanced level in .NET?
I need both free and paid content.
Advice
0
votes
0
replies
71
views
Seeking Advice: Orchard Core vs. Umbraco vs. Custom Build for a Security-Sensitive Project
Hi everyone,
I’m starting a new project with specific compliance requirements and would love to hear your experiences. We need to build a platform that handles front-end and back-end content ...
Advice
0
votes
2
replies
86
views
BackgroundService on Clean Architecture
I’m using Clean architecture, and I want to create an background service to do something in background each 10-20 minutes.
This BackgroundService resolve a dependency with the ServiceProvider; and I ...
-2
votes
1
answer
79
views
Embedding the Speco webcam video into our website [closed]
We have an ASPX (asp.net) website <name redacted> and it needs to have a page which displays the webcam image from a Speco camera. I've tried numerous times to get the video to display in the ...
1
vote
0
answers
84
views
AADSTS500200 error when using personal Microsoft account to grant access to Azure Resource Manager
AADSTS500200 error when using personal Microsoft account to grant access to Azure Resource Manager (https://management.azure.com/user_impersonation) despite correct app configuration
I'm building a ....
Best practices
0
votes
2
replies
57
views
Blazor page access via password for unauthorized users
I'm trying to create a "rooms" system. I want some rooms to be protected by a password for unauthorized users. I tried to save the password check state at the "AddScoped" service, ...
0
votes
3
answers
127
views
ASP.NET WebForms: page data not cleared after redirect when returning with browser back
I have an ASP.NET WebForms page where I clear all page data and then redirect the user to another page:
protected void btnNavigate_Click(object sender, EventArgs e)
{
ClearPageData();
Response....
Best practices
0
votes
2
replies
60
views
How to update Hangfire Recurring Jobs at runtime using IOptionsMonitor and appsettings.json in ASP.NET Core?
I have got the Cron expression for a recurring job in appsettings.json:
{
"HangfireSettings": {
"DailyJobCron": "0 0 * * *"
}
}
I have configured Hangfire in an ...
0
votes
1
answer
62
views
VS2026 Angular/ASP.Net launch configuration without debugging
I've used the Angular/ASP.Net templates in the past with Visual Studio and they've worked reasonably well. Now I've upgraded to VS2026 and am using the latest node.js and angular cli. For the life of ...
Advice
0
votes
0
replies
98
views
How to create a dynamic Repeater in ASP.NET WebForms (.NET Framework) as a beginner?
I am learning ASP.NET WebForms using the .NET Framework (legacy project), and I want to understand how to create a dynamic Repeater control.
As a beginner, I am confused about the correct approach to ...
-2
votes
2
answers
61
views
Build error in my .NET project in Visual Studio 2019 / 2022 [closed]
Recently I set up the project on a new laptop. When I try to build the solution, I get several errors such as:
CS0234: The type or namespace name 'BusinessComponent' does not exist in the namespace.
...
0
votes
0
answers
87
views
How should a .NET Framework solution handle OpenTelemetry wrapper dependencies when using packages.config?
We have a .NET Framework solution with multiple projects. Many projects reference an internal core library, and that core library contains all the package references, including our custom ...