374,562
questions
0
votes
0
answers
8
views
Decrypting ASP.NET 8 authentication cookie
ASP.NET 8 MVC application uses cookie authentication defined in startup.cs:
services.AddDataProtection().PersistKeysToFileSystem(new DirectoryInfo(@"Voti"));
services....
0
votes
1
answer
25
views
How to add an item that is not included in the listbox to a listbox in ASP.NET?
I need a control in ASP.NET webforms. When the user writes a text in this control and clicks enter, the relevant text should be selected and appear in the control. In this context, I tried Listbox, ...
0
votes
0
answers
27
views
In an ASP.NET web forms project (.NET Framework) how do I simply concatenate scripts together, preferably also minify them, and do this at build time?
I have an ASP.NET Web Application and a bunch of legacy scripts that are being bundled together using the Visual Studio "Bundler & Minifier" extension. These are just creating library ...
0
votes
0
answers
13
views
What's causing slow performance on IIS while under load?
I have a ASP.NET Framework 4.8 project hosted on IIS 10, and I'm seeing significantly slower response times while the server is under a light load. I've reproduced it with JMeter using 500 user ...
1
vote
1
answer
32
views
.Net Blazor id The MERGE statement conflicted with the FOREIGN KEY constraint problem
I am working on a project and there is a trainer I follow.
When I came to the update process, I started to get an error, when I went with Breakpoints, I realized that the QuizId value came 0000 in the ...
0
votes
0
answers
20
views
IServiceProvider is immediately disposed after creation and i don't understand why
This is my test class(well, part that contains the problem)
public class FiltrationServiceTests:
IClassFixture<IntegrationTestWebAppFactory>,
IAsyncLifetime
{
private readonly ...
0
votes
1
answer
20
views
How to create two details section with headers separated under group header section?
I work on crystal report I face issue how to display two details section with different headers related to same group by licenserecid ?
I can display first section related to group licenserecid ...
0
votes
0
answers
7
views
Add additional handelbar template files to generate history tables and triggers
I'm using EFC.Scaffolding.Handlebars for generating Entities and DBContext (https://github.com/TrackableEntities/EntityFrameworkCore.Scaffolding.Handlebars).
Now, I'm looking for a way to generate ...
0
votes
0
answers
18
views
Combining Queues with RabbitMQ in ASP.NET Web API
I am developing an application using ASP.NET Web API and Angular with two main functionalities:
File Upload: Users can upload files, and upon successful upload, the server generates URLs for these ...
1
vote
1
answer
26
views
default treeList and dataGrid delete confirmation buttons
I have problem in customize the localization text for Yes and No default buttons to confirm delete in treeList and DataGrid in devexpress in an asp.net core project. Is there any solution to activate ...
0
votes
1
answer
13
views
StatusPagesWithReexecute does not work with UseExceptionHandler
In my Kentico 13 website, I'm trying to use an ErrorController to display custom error pages in response to http error codes. The error controller works with:
app.UseStatusCodePagesWithReExecute("...
0
votes
1
answer
30
views
ASP.NET: Webpage doesn't update upon refresh after code changes
The project is run without debugging. The web app only updates upon refresh for code changes in Index.cshtml. Changes in controller .cs files are not reflected in the page upon refresh.
Scenario:
...
0
votes
0
answers
11
views
GetExternalLoginInfoAsync returns the wrong user
We're using AddMicrosoftIdentityWebApp to authenticate our users against EntraID. In the EntraID I have two users with two different email and udp. I can log in with either user, but after logging out,...
0
votes
1
answer
40
views
failed to solve: lstat /var/lib/docker/tmp/buildkit-mount41583267/#: no such file or directory
I am new to Docker and I'm trying to build a ASP.NET Core & React app, but having problems with Docker Compose. I get the error "failed to solve: lstat /var/lib/docker/tmp/buildkit-...
-1
votes
0
answers
36
views
ASP.NET - Open camera on handheldscanner with a button and capture image and save to disk
On our handheld scanners we need to open the camera and the picture taken has to be captured and saved on our server.
First they scan the ordernumber,
Then next page some text
Then next page should ...