ASP.NET

ASP.NET is a Microsoft web development platform. It can be used to create dynamic websites, web applications and web services. ASP.NET is built on the Common Language Runtime (CLR), which provides a consistent development environment across multiple programming languages.
CLICK HERE To solve more code-related solutions you face every day.

Host Asp.Net Web API as an Application Under Asp.Net MVC application on IIS

This was resolved by setting inheritInChildApplications=”false” on the web.config file of the Asp.net MVC Application. <location path=”.” inheritInChildApplications=”false”> <system.web></system.web> </location> <location path=”.” inheritInChildApplications=”false”> <system.webServer></system.webServer> </location> CLICK HERE to find out …

Host Asp.Net Web API as an Application Under Asp.Net MVC application on IIS Read More »

After some time troubleshooting, I finally figured out what was going on. It turns out there was a configuration in the code which changed the root path for angular files. …

Read More »

Serilog filter RequestPath

Easy solution “expression”: “EndsWith(RequestPath, ‘/healthcheck’) AND StatusCode=200” Replaced AND by OR “expression”: “EndsWith(RequestPath, ‘/healthcheck’) OR StatusCode=200” CLICK HERE to find out more related problems solutions.

Scroll to Top