Web.config
6 posts tagged with this.
-
PathBase for ASP.NET Core Under IIS Virtual Apps
ASP.NET Core under an IIS virtual app misbuilds links and cookies unless PathBase is set. Wire middleware and web.config so /api and sub-apps stay correct.
-
IIS URL Rewrite HTTPS Redirects Without Loops
Force HTTPS and a single host name at the IIS edge without redirect loops. Patterns that play cleanly with ASP.NET Core in-process hosting.
-
How to Force Redirect HTTP to HTTPS
Implement an automatic HTTP to HTTPS redirect to secure all site traffic with encryption. This guide provides exact rules for IIS URL Rewrite in web.config (with Let's Encrypt exclusion), Helicon Ape, and Apache .htaccess, plus testing steps and troubleshooting tips.
-
Fixing System.ComponentModel.Win32Exception: Access is Denied
The System.ComponentModel.Win32Exception: Access is denied error occurs after publishing .NET 4.5 or higher applications when the runtime cannot execute bin/roslyn/csc.exe due to missing permissions. This guide provides context on why it happens on Windows hosting plus two proven solutions: uninstal
-
Is ASP.NET Full Trust Mode Available?
Yes, our Windows services support and only support ASP.NET full trust mode. It is enabled by default with no configuration required. Create your website, select the ASP.NET version, and deploy your application immediately. Full trust removes CAS restrictions that commonly break components needing fi
-
Cannot Find or Select .NET 3.5 or .NET 4.5
This is expected behavior. .NET 3.5 extends .NET 2.0 so enabling 2.0 provides access to its libraries and features. .NET 4.5 replaces .NET 4.0 so any 4.x selection activates 4.5 capabilities. This guide details the version mappings, control panel choices, web.config examples, and troubleshooting for