[Solved] How to disable RSS in ASP.NET

Look for something like this on the html template and remove it (don’t make a literal search of the entire tag since title and href will be different) <link rel=”alternate” type=”application/rss+xml” title=”RSS” href=”https://stackoverflow.com/questions/15400046/url” /> 2 solved How to disable RSS in ASP.NET

[Solved] Query string is too long

maxRequestLength is for file uploads. Try this instead under the system.web node <httpRuntime maxUrlLength=”1000″ maxQueryStringLength=”1000″ /> 1 solved Query string is too long

[Solved] Programmatically identify PHP and ASP include dependencies [closed]

Many thanks to @Progrock for pointing me to checking last accessed time for files in target folder. This is what I had to do. Ensure capturing last accessed time is being set by Windows (see Directory.GetFiles keeping the last access time) Process.Start(“fsutil”, “behavior set disablelastaccess 0”).WaitForExit(); Also need to restart IIS to stop any cached … Read more

[Solved] Net Core Framework Versions on IIS

.NET Core is flexible regarding different versions running on the same web server. Publishing an application as self-contained, will allow you to run as many different versions as you would like on the same web server. See .NET Core application publishing overview. Only if you are publishing as framework-dependent would you need that specific .NET … Read more