Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
11 views

I’m using OpenIddict 4.x with ASP.NET Core and the authorization code + PKCE flow for a SPA. I want to support multi-tenant subdomains, where each tenant has its own frontend host, e.g.: https://...
damon shahi's user avatar
0 votes
1 answer
43 views

Our security team flagged an issue indicating that an older jQuery version appeared to be loaded in our application.(ScriptResource.axd) I am working on an ASP.NET WebForms (.NET Framework) ...
Akshita Dangi's user avatar
-4 votes
0 answers
117 views

I've run into a problem with my ASP.NET webservice and its connectivity to the SQL Server database (separate server). The webservice works relatively nicely with a few 100k calls to it every day. But ...
Thomas's user avatar
  • 3,006
0 votes
0 answers
65 views

I'm using .NET 4.7.2, ASP.NET webforms and forms authentication. Everything works fine for the normal forms authentication where the user enters their credentials on the login screen. However, after ...
randy's user avatar
  • 285
1 vote
1 answer
115 views

I am using Devexpress Report to make sales invoice using my macOS laptop. The invoice must have a QR Code, which I was able to create successfully, but I can not display it in the invoice because the ...
NAZ's user avatar
  • 36
Best practices
0 votes
2 replies
147 views

I want to clean this extension method (I am sorry for what you about to see, I am pretty shamed about this code 😅) but I have no I idea how to do it, so I am asking your help if you have any ideas of ...
aymen's user avatar
  • 61
0 votes
0 answers
86 views

I have Azure Container Apps that I created, but afterwards they show up as red indicating a problem. Do you guys know what this problem is or how to fix it? First, you must create a Container Registry ...
Erik343's user avatar
  • 343
2 votes
1 answer
108 views

We currently have a customErrors section in our web.config that looks like this: <customErrors mode="RemoteOnly" defaultRedirect="/Error/Error.aspx" redirectMode="...
MB34's user avatar
  • 4,498
0 votes
1 answer
55 views

I have a case where I have to implement multi authentication in my API. controller.cs: public class TestController { [Authorize] [CustomAuthFilter] public async Task<IHttpActionResult&...
Aman Kadakuntla's user avatar
0 votes
1 answer
112 views

We have a current Azure Premium instance running with no problems at around 1k operations per second. We've created a new Azure Managed Redis instance. We naively thought just updating the connection ...
Tom Gullen's user avatar
0 votes
1 answer
84 views

Our web servers are currently using the Oracle 12 client, and IS wants us to upgrade to something more modern. I've downloaded the 23 instant client and put it on the server, along with our ldap.ora ...
Mike Swaim's user avatar
0 votes
0 answers
61 views

I am using .NET and getting the above error. Till yesterday everything was working and all of sudden getting this error today ? Not sure what is changed? Also, issue is only with edge browser and FF ...
user31876733's user avatar
2 votes
1 answer
60 views

I am trying to remove the padlock from some of the APIs from my collection My Swaggergen is built: builder.Services.AddSwaggerGen(options => { options.SwaggerDoc("v1", ...
Kamsiinov's user avatar
  • 1,523
0 votes
1 answer
61 views

I created a basic ASP.NET Razor pages project called learningapptest. Then I created a github repository called learningapptest. I then pushed up my basic ASP.NET project to github. In the Azure ...
Erik343's user avatar
  • 343
Best practices
2 votes
1 replies
89 views

We have a very large, and very old application written in ASP.NET Framework. We recently upgraded it to 4.8.1, rewrote it to use async/await, and removed all context dependencies such as HttpContext....
Matthew Friemoth's user avatar
0 votes
1 answer
73 views

I'm populating multiple CheckBoxList from the database in the code behind. But when I click the update button, all the items vanish. Page Load When Update button click The page_load !IsPostBack C# ...
Alverant's user avatar
  • 249
-1 votes
0 answers
51 views

I have removed all inline scripts and style in order to adhere to Content Security policy. There are dynamically generated scripts for validations for asp.net webforms , how should I make sure this ...
shweta 's user avatar
1 vote
1 answer
75 views

λ ~/ dotnet --version 10.0.100 λ ~/ system_profiler SPSoftwareDataType SPHardwareDataType Software: System Software Overview: System Version: macOS 26.1 (25B78) Kernel Version: ...
Booshwa's user avatar
  • 55
0 votes
1 answer
57 views

My DevExpress ASPxGridView reloads the entire dataset every time I expand a grouped row, causing performance issues. The LoadGeneralSearch() method fires on each expand, re-executing the SQL query. ...
Sahil's user avatar
  • 1
0 votes
1 answer
96 views

I am trying to do a POST request to an API endpoint api/auth/assign-role with this data: { "userId": "3d2243fc-8d32-4889-a7e2-624af56a3f91", "role": "Doctor&...
bibashmanjusubedi's user avatar
0 votes
1 answer
58 views

In ASP.NET I have a model with a property like this: public List<string>? Images { get; set; } which is used for the name of images that were uploaded to a Razor page. Now, after uploading ...
Khosro Qasemi's user avatar
0 votes
0 answers
71 views

I'm running into a specific issue with my web.config when trying to serve XML files. As soon as I add this rule: <add name="XmlFile" path="*.xml" verb="GET,HEAD" ...
Mohammad Taha Moghaddasi's user avatar
0 votes
1 answer
45 views

This is my ocelot configuration... { "Routes": [ { "UpstreamPathTemplate": "/api/test/{url}", "DownstreamPathTemplate": "/api/{url}",...
Nat Jacobs's user avatar
Best practices
0 votes
3 replies
72 views

Adding [ApiController] on a controller class has various benefits. Especially the automatic model validation and problem details parts. The problem with this attribute is that it's easy to forget to ...
LLL's user avatar
  • 3,781
Best practices
0 votes
3 replies
64 views

Our application is somewhat of a middleman that transforms data from numerous APIs. Initially to simplify things, we wrote a bunch of specific clients which wrap an instance of HttpClient created in ...
MetallicHydrogen's user avatar
Best practices
2 votes
4 replies
85 views

I am using HttpClient in .NET 9 to get content that has a JSON part along with a base-64 encoded file. Reading the content as a string, I don't see a clear format that would ensure consistent parsing ...
NeartCarp's user avatar
  • 231
Tooling
0 votes
0 replies
37 views

I was trying to generate a client from the OpenRouter API reference, that can be found in their typescript-sdk github, .speakeasy/in.openapi.yaml : https://github.com/OpenRouterTeam/typescript-sdk/...
k2042's user avatar
  • 1
Best practices
0 votes
0 replies
25 views

In Asp.Net (not Core) we have InstancePerRequest which uses tagged matching child scopes. In Asp.Net Core they deprecated InstancePerRequest in favour of InstancePerLifetimeScope which as I understand ...
mark's user avatar
  • 63.7k
0 votes
1 answer
95 views

I'm trying to download files through a popup window. Most of files download correctly, but some one through this error: Error in /Controladores/Descarga.ashx?guid=4b5050f6-2f69-41e1-8bd6-1113686e9575 ...
Pyrus's user avatar
  • 107
1 vote
0 answers
48 views

I'm running an ASP.NET Core application. Everything works correctly when using Docker Compose — all values from appsettings.json load normally, and my services connect to Postgres and RabbitMQ. But ...
Jorjinio's user avatar
1 vote
0 answers
58 views

The test with coverage runs perfectly well locally: C:\xyz\DevOps\xyz.DependencyInjection [master ≡]> dotnet test -c:Release --no-build -f net9.0 --filter "FullyQualifiedName~Tests....
mark's user avatar
  • 63.7k
0 votes
1 answer
65 views

To give context, I am using Azure Static Web App linked to GitHub, Azure Container App linked to Docker Hub & have Azure SQL database along with SQL Server setup. This is my first attempt in ...
Miyazaki Ahmad's user avatar
1 vote
2 answers
163 views

I've updated my developer tools in Windows 11 to use the updated .NET 9/10 of November 2025 update. I have not updated my projects to .NET 10, so the projects are running in .NET 9. I have one ...
Wallace B. McClure's user avatar
0 votes
1 answer
77 views

I'm trying to call a simple static WebMethod in my ASP.NET Webforms page using jQuery Ajax, but it doesn't seem to be working. I've tried enabling anonymous authentication and other fixes suggested ...
Aswinth's user avatar
Advice
0 votes
2 replies
59 views

I am looking for a freeware grid control for ASP.NET C# Webforms. It would behave similar to Excel. The rows will be sequential dates, and the columns are my equipment numbers. I want to be able to to ...
Kim's user avatar
  • 191
0 votes
0 answers
24 views

We have an asp.net website based on 4.5.2 framework. I am trying to integrate the Superset dashboard into one of the .aspx page, but getting following error: Error: {"errors": [{"...
Pankaj Upadhyay's user avatar
1 vote
0 answers
193 views

I use VS code (not VS cause i have linux) and have been trying to run my c# template from run and debug in VS code but it does not works and returns this error in output. -----------------------------...
Lazare Janiashvili's user avatar
0 votes
1 answer
63 views

I am using Bootstrap 3.5 with ASP.NET controls (Visual Studio 2022). I have an ASP.NET:TextBox in a Bootstrap column. While an HTML input tag spreads across the entire Bootstrap column, left to right, ...
StuKH's user avatar
  • 41
0 votes
0 answers
88 views

My site has two website projects. One of them references Microsoft.CodeDom.Providers.DotNetCompilerPlatform. We have recently upgraded this from 3.6.0 to 4.1.0 as part of a wider upgrade project. The ...
JakePlatford's user avatar
1 vote
1 answer
79 views

Does anyone know if there's an easy way in Blazor to have: A frontend/'user facing' site using Blazor Static SSR I don't want to include blazor.web.js, no enhanced navigation or streaming rendering ...
Zak123's user avatar
  • 455
Best practices
3 votes
3 replies
101 views

I have the following application architecture: FrontEnd → ApiServer 1 → ApiServer 2 → Database So, the frontend calls a web server, which calls multiple API which make query on database. What is the ...
Massimo Lavermicocca's user avatar
0 votes
1 answer
126 views

Here’s the error message from the browser console: Access to fetch at 'https://orbis-api-web.azurewebsites.net/api/v1/UserAuth/RefreshToken' from origin 'https://orbis-solidarity.com' has been ...
christine vasilyan's user avatar
0 votes
0 answers
58 views

Error message: Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). Other solutions tell one to modify the markup syntax in various ways, but I've ...
FloverOwe's user avatar
  • 373
0 votes
1 answer
239 views

I'm working on a high-performance ASP.NET Core Web API where each request can return hundreds of entity records. Each entity includes multiple navigation properties and nested objects. Currently, I’m ...
Mina Golzari Dalir's user avatar
1 vote
1 answer
80 views

I have a page Product.aspx that has a master page Main.master, both pages are in the root of the project (they don't belong to any folder). The problem is that the tilde path only works for the Main....
franko_camron's user avatar
0 votes
0 answers
53 views

Problem Summary We’re currently blocked in production on OCI VMs (Windows Server 2012 R2 and 2022) when using Oracle.Web.Security.OracleRoleProvider to authenticate against an Oracle Autonomous ...
Antoine's user avatar
  • 55
1 vote
0 answers
80 views

I am creating a lib to listen to server notifications (more than 100,000 requests per hour), when using WebSocketSharp it is receiving all 100,000 notifications but there is memory leak (server goes ...
MSD86911's user avatar
0 votes
0 answers
50 views

After several days and multiple attempts using examples, I am still struggling to get a partial view to page inside a tab control. In the code below, when selecting the 'tab4' Tab 1st time, it ...
PeteN's user avatar
  • 15
-1 votes
1 answer
87 views

I’m using .NET Aspire to orchestrate my services, and everything is deployed to Azure Container Apps. By default for replication, Container Apps seem to use HTTP scaler with a concurrency target of 10 ...
Markiian Hoinets's user avatar
0 votes
1 answer
95 views

I am having some difficulty setting the focus inside an .ascx custom control. Microsoft Copilot advises me to place a txtName.Focus() or Page.SetFocus(txtName) inside the Page_Load event of the .ascx. ...
Sheldon M. Penner's user avatar

1
2 3 4 5
7468