skip to Main Content

Asp.net – Insert an element in web.config based on key value in appsettings

We have a requirement to apply a transform based upon an app setting value in web.config for our ASP.NET MVC project. <!--web.config--> <?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings> <add key="environment:define" value="dev"/> </appSettings> <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="https://abcd.com" /> </customHeaders> </httpProtocol>…

VIEW QUESTION

ASP.NET Boilerplate start project with CLI

Using ASP.Net Boilerplate (.net 8), whats the correct way to run the project using CLI on Linux. When listing the projects I get the following: ▶ dotnet sln list Project(s) ---------- src/SimpleTaskSsytem.Application/SimpleTaskSsytem.Application.csproj src/SimpleTaskSsytem.Core/SimpleTaskSsytem.Core.csproj src/SimpleTaskSsytem.EntityFrameworkCore/SimpleTaskSsytem.EntityFrameworkCore.csproj src/SimpleTaskSsytem.Migrator/SimpleTaskSsytem.Migrator.csproj src/SimpleTaskSsytem.Web.Core/SimpleTaskSsytem.Web.Core.csproj src/SimpleTaskSsytem.Web.Host/SimpleTaskSsytem.Web.Host.csproj test/SimpleTaskSsytem.Tests/SimpleTaskSsytem.Tests.csproj When trying…

VIEW QUESTION

Asp.net – Can you run the IConfiguration Build in a 3rd party library

If I put this code in a 3rd party library I'm building. public class AsyncDb2Read { private readonly DB2Connection connection; public AsyncDb2Read() { var assembly = System.Reflection.Assembly.GetEntryAssembly(); var c = new ConfigurationBuilder() .AddUserSecrets(assembly, true) .SetBasePath(Directory.GetCurrentDirectory()) .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)…

VIEW QUESTION

Asp.net – Error executing child request with Server.Transfer

In our Global.asax file we have: protected void Application_Error() { Errors.Functions.HandleException(HttpContext.Current); } On a 404 error, the following code is executed: context.Server.Transfer("~/pages/errors/404.aspx"); context.ClearError(); context.ApplicationInstance.CompleteRequest(); This works absolutely fine for every 404 exception. However, we're seeing odd requests in our logs…

VIEW QUESTION
Back To Top
Search