372,959 questions
Advice
0
votes
0
replies
32
views
How to understand the Reliable web app pattern
I was reading some tutorial on Microsoft's documentation about MVC with Razor views, I finished the tutorial, and I fully understood how all the modules talk to each other, like how the controller ...
2
votes
1
answer
85
views
Authorized HLS streams with LibVLC and ASP.NET
I am developing an application that uses HLS streams from an ASP.NET server to an Avalonia desktop client. My target is to provide HLS streams only to authenticated users and my solution is to ...
-1
votes
1
answer
150
views
Why is this request failing? [closed]
I have an API that gets POST and GET requests from a worker and handles it just fine.
But if I send a request (POST or GET), it throw the errors:
HttpRequestException: An error occurred while sending ...
0
votes
0
answers
36
views
Azure Container Apps OpenSearch security plugin not working over HTTP internal ingress (HTTPS → HTTP mismatch)
I am deploying OpenSearch in an Azure Container Apps (ACA) environment and facing issues when enabling the OpenSearch security plugin.
Architecture
API / WebJob (HTTPS)
↓
Azure Container Apps ...
Best practices
0
votes
2
replies
75
views
Best practice for organizing Claim Types and Values as constants in ASP.NET
I'm trying to refactor the authorization layer in my ASP.NET Core Web API project to remove any hard coded strings in policies.
For roles, I used an enum, and for policies I used a flat static class, ...
Advice
0
votes
4
replies
95
views
How to exit on a found string for aws logs tail
I have made a customized deployment pipeline, for a legacy ASP.net web forms app, where I utilize Web deploy + S3 and SQS Services from Amazon.
I have written a script in Powershell that moves the ...
Advice
0
votes
7
replies
143
views
.NET 6 .NET 10 Visual Studio
When creating or opening an ASP.NET Core MVC web project using .NET 6 and .NET 10, I encounter a frustrating error.
In Visual Studio Community, when I click to run, the following error appears:
...
2
votes
2
answers
89
views
Generic delete of child entities before MarkAsDeleted() to avoid foreign key constraint errors in VirtualEntityDeleted
public void VirtualEntityDeleted(object sender, VirtualEntityChangedEventArgs e)
{
if ((_DocumentEntity.ID > 0 && _AddedRows != null && _AddedRows.Any(a => a.Key == e....
Best practices
0
votes
4
replies
93
views
What is best practice to use second caching layer with Redis to use it in service layer with ApiControllers?
I've started pet-project recently and created generic RedisService to use for caching, but I found problem that redis isn't good way to storing anomyous user data, if he revisists the webapp for like ...
-5
votes
0
answers
102
views
How to manually activate confetti effect in an ASP.NET web page? [duplicate]
I have found some code from here that displays the confetti effect on a web page but will run on the page loads.
I'd like to:
Not start the confetti when the page loads.
Start the confetti on a ...
Best practices
2
votes
2
replies
111
views
How would you build a chat system using JavaScript (web based )and cSharp as you backend language?
So I’m a second year student doing IT in applications development and we were given a project of our own choosing , the issue is we’ve never used any kind of language to build a full working website(...
Advice
0
votes
2
replies
81
views
Is learning asp.net through paid in 2026 is beneficial or not?
Is learning ASP.NET through paid courses in 2026 still beneficial? With modern web technologies growing fast, I’m confused whether investing time and money in ASP.NET development is still a smart ...
-2
votes
3
answers
167
views
How to tell ASP.NET Core WebAPI to use one thread per API request
Is there any way to tell ASP.NET Core Web API to handle a request in a separate thread?
Actually multi-threading yes, per request one thread.
I do have a problem with deserializing incoming requests. ...
Advice
1
vote
9
replies
170
views
Which is the best approach for faster API request and response handling in react js UI?
I am developing an application using ASP.NET and I want to improve UI performance when sending and receiving API data.
Which approach is best for getting faster API request and response handling in ...
2
votes
1
answer
117
views
Using format in inline ASP.NET expressions from resources
I'm using inline expression builder in ASP.NET like this:
<asp:Label ID="Label1" runat="server" Text="<%$ Resources: Labels, MyText %>" />
But I would like ...