No ASP.NET Features Featured in IIS 7.5

I had a problem in IIS 7.5 where the ASP.NET functions section does not appear in my web application.

My environment: Windows 2008 R2 SP1, IIS 7.5 (7.5.7600), .NET Framework 4.0

My problem is similar to the problem posted here: There are no asp.net features in IIS 7.5 , only my environment is different. The fixed β€œadd features” patch mentioned in this post does not seem to work on Windows Server 2008, because I don’t see the simple ASP.NET function that I can select.

I tried running the aspnet_regiis tool as an administrator for .NET 4.0 with no luck. The application pool selected for the web application is currently configured to use .NET 4.0. This application is functional, so I assume that .NET 4.0 is installed correctly, but I would like to be able to configure a few more things that are in the ASP.NET section.

+6
source share
2 answers

Try roles> Right Web Server (IIS)> Add Role Services> Application Development to enable ASP.Net features in IIS

+11
source

The user interface is slightly different in newer versions of Windows Server. You must enable ASP.Net here to make it work with IIS

How To Fix IIS ASP.Net Errors

+1
source

Source: https://habr.com/ru/post/922504/


All Articles