Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing ASP.NET tab in IIS

Hmm. I'm trying to deploy a web service to a new server and there is no ASP.NET tab. I've tried running aspnet_regiis from ASP.NET 2.0 directory but this doesn't seem to work. Any ideas anyone?

like image 453
Johnno Nolan Avatar asked Oct 21 '08 16:10

Johnno Nolan


People also ask

Why ASP NET is not showing in IIS?

If in IIS the tab for ASP.Net does not appear, follow these steps: Verify first that you have the . Net 2.0 Framework installed. To do this, go to Add or Remove Programs in the Control Panel and verify that you have Microsoft .

How can I see ASP net in IIS?

In Control Panel, click Programs, and then click Turn Windows features on or off. In the Windows Features dialog box, click Internet Information Services to install the default features. Expand the Application Development Features node and click ASP.NET 4.5 to add the features that support ASP.NET.

How do I enable .NET Framework in IIS?

Enabling Windows Internet Information Services (IIS)In the Server Roles tab of the Add Roles and Features wizard, check the Web Server (IIS) box. The default values provide all the functionality LEC AIM needs. On the Features tab of the Add Roles and Features wizard, check the . NET Framework 4.

How configure ASP in IIS?

Click Start, and then click Control Panel. In Control Panel, click Programs and Features, and then click Turn Windows Features on or off. Expand Internet Information Services, then World Wide Web Services, then Application Development Features. Select ASP, and then click OK.


2 Answers

If you've had (or have...) VMware Server installed on this particular machine, the following steps will most likely fix the issue with minimal pain:

  1. Stop the IISAdmin service (and its dependencies)
  2. Open %windir%\system32\inetsrv\MetaBase.xml in a text editor
  3. Delete the line that reads Enable32BitAppOnWin64="TRUE"
  4. Restart your services using iisreset /start
like image 63
mdb Avatar answered Oct 20 '22 16:10

mdb


Did you try uninstalling and then reinstalling ASP.NET?

i.e.

aspnet_regiis -u

and then

aspnet_regiis -i

The uninstall and then reinstall worked for me before.

like image 32
David Mohundro Avatar answered Oct 20 '22 17:10

David Mohundro