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?
+2
A:
Did you try uninstalling and then reinstalling ASP.NET?
i.e.
aspnet_regiis -u
Then
aspnet_regiis -i
The uninstall and then reinstall have worked for me before.
David Mohundro
2008-10-21 16:17:55
+1
A:
Is this IIS6? I think you can go to the
- Add/Remove Software
- Windows Components
- IIS
- Make sure that ASP.NET is checked. I think this installs support for ASP.Net
- re-run aspnet_regiis
jwmiller5
2008-10-21 16:20:07
ASP.net is checked unfortunately
John Nolan
2008-10-21 16:39:43
+1
A:
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:
- Stop the IISAdmin service (and its dependencies)
- Open
%windir%\system32\inetsrv\MetaBase.xml
in a text editor - Delete the line that reads
Enable32BitAppOnWin64="TRUE"
- Restart your services using
iisreset /start
mdb
2008-10-21 16:27:22
+1
A:
This can have multiple causes ranging from installing IIS after the .NET Framework or the IIS metabase getting corrupted. The order I would go with is:
- reinstall ASP.NET (as noted above: aspnet_regiis -u and then aspnet_regiis -i (found in the Windows\Microsoft.NET\Framework\vX.Y.Z directory)
- If #1 does not resolve it, then reinstall IIS (Remove/reinstall using Add/Remove Windows Components from Add/Remove Programs on XP/2003 or from Programs Control Panel Applet on Vista)
mjmarsh
2008-10-21 16:30:44