473,395 Members | 1,595 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

ASP.net Tab Missing IIS Manager

I am running SBS 2003 R2 and have installed the dotnet framework version 2.0
and registered it with IIS. However I do not have the ASP.net tab in IIS
Manager, how can i enable this?

Thanks
Nov 4 '06 #1
6 22471
That is a common problem when beta versions of Visual Studio
aren't fully uninstalled before the release version is installed, or when
Visual Studio's components are uninstalled in the wrong order.

See if this workaround listed in my bug report help you get it back :
http://lab.msdn.microsoft.com/produc...7-767b6d7d750a

FDBK21319#2: Remove Registry Entries that cause the problem
Thanks to Chris Adams:
http://www.eggheadcafe.com/forums/Fo...=20592&INTID=6

To fix, check the following 3 regkeys :
HKEY_CLASSES_ROOT\CLSID\{7D23CCC6-A390-406E-AB67-2F8B7558F6F6}\InprocServer*32
HKEY_CLASSES_ROOT\CLSID\{FD5CD8B1-6FE0-44F3-BBFB-65E3655B096E} \InprocServer32
HKEY_CLASSES_ROOT\CLSID\{FEDB2179-2335-48F0-AA28-5CDA35A2B36D}\InprocServer*32

Under (expand) InProcServer32, look for the presence of a non-2.0.0.0 (example 2.0.36.0)
and remove it. It has a reference that causes this to break.

WARNING : don't fool with the registry if you are not proficient doing that.

You can work around the problem, if editing the registry doesn't fix it, by using
Denis Bauer's ASP.NET Version Switcher to switch ASP.NET versions.

http://www.denisbauer.com/NETTools/A...nSwitcher.aspx

While it doesn't edit ASP.NET configuration files, at least it allows you
to pick the version of the framework will be used for specific websites.

Here's instructions on how to manually uninstall beta versions of Visual Studio 2005
http://msdn.microsoft.com/vstudio/su...l/default.aspx

Or, you might want to use the VS 2005 beta cleanup tool.
http://go.microsoft.com/fwlink/?LinkId=47598


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"nickname" <ni*******@newsgroups.nospamwrote in message
news:F5**********************************@microsof t.com...
>I am running SBS 2003 R2 and have installed the dotnet framework version 2.0
and registered it with IIS. However I do not have the ASP.net tab in IIS
Manager, how can i enable this?

Thanks


Nov 4 '06 #2
Thanks for the reply. I have never had the beta version of any products
install on the machine. However have checked the registry keys mention and
they all have just 2.0.0.0 present.

Anybody have any other ideas what might have caused this?

"Juan T. Llibre" wrote:
That is a common problem when beta versions of Visual Studio
aren't fully uninstalled before the release version is installed, or when
Visual Studio's components are uninstalled in the wrong order.

See if this workaround listed in my bug report help you get it back :
http://lab.msdn.microsoft.com/produc...7-767b6d7d750a

FDBK21319#2: Remove Registry Entries that cause the problem
Thanks to Chris Adams:
http://www.eggheadcafe.com/forums/Fo...=20592&INTID=6

To fix, check the following 3 regkeys :
HKEY_CLASSES_ROOT\CLSID\{7D23CCC6-A390-406E-AB67-2F8B7558F6F6}\InprocServerÂ*32
HKEY_CLASSES_ROOT\CLSID\{FD5CD8B1-6FE0-44F3-BBFB-65E3655B096E} \InprocServer32
HKEY_CLASSES_ROOT\CLSID\{FEDB2179-2335-48F0-AA28-5CDA35A2B36D}\InprocServerÂ*32

Under (expand) InProcServer32, look for the presence of a non-2.0.0.0 (example 2.0.36.0)
and remove it. It has a reference that causes this to break.

WARNING : don't fool with the registry if you are not proficient doing that.

You can work around the problem, if editing the registry doesn't fix it, by using
Denis Bauer's ASP.NET Version Switcher to switch ASP.NET versions.

http://www.denisbauer.com/NETTools/A...nSwitcher.aspx

While it doesn't edit ASP.NET configuration files, at least it allows you
to pick the version of the framework will be used for specific websites.

Here's instructions on how to manually uninstall beta versions of Visual Studio 2005
http://msdn.microsoft.com/vstudio/su...l/default.aspx

Or, you might want to use the VS 2005 beta cleanup tool.
http://go.microsoft.com/fwlink/?LinkId=47598


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"nickname" <ni*******@newsgroups.nospamwrote in message
news:F5**********************************@microsof t.com...
I am running SBS 2003 R2 and have installed the dotnet framework version 2.0
and registered it with IIS. However I do not have the ASP.net tab in IIS
Manager, how can i enable this?

Thanks

Nov 4 '06 #3
re:
I have never had the beta version of any products install on the machine.
See:
http://news.zdnet.com/2100-3513_22-6099857.html

Published on ZDNet News: July 28, 2006, 12:27 PM PT

Microsoft said on Friday that it is recalling an update to its Small Business Server
product because of a glitch found late in the manufacturing process.

The software maker said it found a problem with Windows Small Business Server 2003 R2
after the product was released to computer makers but before it was made broadly available.

"Recently, and during a regular audit as part of our software production process,
Microsoft became aware of an issue with the final...software containing nonfinal
versions of a few core components,"

Do you have the patched version, or a version ordered before July 28 ?

Can you check the .Net Framework version number by running this aspx page ?

version.aspx:
------------------

<%@ Page Language="VB" %>
<html>
<head>
</head>
<body>

<%
Response.Write("ASP.NET System Environment Version = " & System.Environment.Version.ToString())
%>
</body>
</html>

If the version reported is not 2.0.50727.42, you have the unpatched version.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"nickname" <ni*******@newsgroups.nospamwrote in message
news:86**********************************@microsof t.com...
Thanks for the reply. I have never had the beta version of any products
install on the machine. However have checked the registry keys mention and
they all have just 2.0.0.0 present.

Anybody have any other ideas what might have caused this?
"Juan T. Llibre" wrote:
>That is a common problem when beta versions of Visual Studio
aren't fully uninstalled before the release version is installed, or when
Visual Studio's components are uninstalled in the wrong order.

See if this workaround listed in my bug report help you get it back :
http://lab.msdn.microsoft.com/produc...7-767b6d7d750a

FDBK21319#2: Remove Registry Entries that cause the problem
Thanks to Chris Adams:
http://www.eggheadcafe.com/forums/Fo...=20592&INTID=6

To fix, check the following 3 regkeys :
HKEY_CLASSES_ROOT\CLSID\{7D23CCC6-A390-406E-AB67-2F8B7558F6F6}\InprocServer*32
HKEY_CLASSES_ROOT\CLSID\{FD5CD8B1-6FE0-44F3-BBFB-65E3655B096E} \InprocServer32
HKEY_CLASSES_ROOT\CLSID\{FEDB2179-2335-48F0-AA28-5CDA35A2B36D}\InprocServer*32

Under (expand) InProcServer32, look for the presence of a non-2.0.0.0 (example 2.0.36.0)
and remove it. It has a reference that causes this to break.

WARNING : don't fool with the registry if you are not proficient doing that.

You can work around the problem, if editing the registry doesn't fix it, by using
Denis Bauer's ASP.NET Version Switcher to switch ASP.NET versions.

http://www.denisbauer.com/NETTools/A...nSwitcher.aspx

While it doesn't edit ASP.NET configuration files, at least it allows you
to pick the version of the framework will be used for specific websites.

Here's instructions on how to manually uninstall beta versions of Visual Studio 2005
http://msdn.microsoft.com/vstudio/su...l/default.aspx

Or, you might want to use the VS 2005 beta cleanup tool.
http://go.microsoft.com/fwlink/?LinkId=47598


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"nickname" <ni*******@newsgroups.nospamwrote in message
news:F5**********************************@microso ft.com...
>I am running SBS 2003 R2 and have installed the dotnet framework version 2.0
and registered it with IIS. However I do not have the ASP.net tab in IIS
Manager, how can i enable this?

Thanks



Nov 4 '06 #4
Thanks for your reply, i have created the page you suggested and it says the
version is:

2.0.50727.42

I might have the version that was recalled as I got the media from MSDN. My
understanding was Microsoft released the patches on windows update for people
that had the recalled version.

Any ideas?

"Juan T. Llibre" wrote:
re:
I have never had the beta version of any products install on the machine.

See:
http://news.zdnet.com/2100-3513_22-6099857.html

Published on ZDNet News: July 28, 2006, 12:27 PM PT

Microsoft said on Friday that it is recalling an update to its Small Business Server
product because of a glitch found late in the manufacturing process.

The software maker said it found a problem with Windows Small Business Server 2003 R2
after the product was released to computer makers but before it was made broadly available.

"Recently, and during a regular audit as part of our software production process,
Microsoft became aware of an issue with the final...software containing nonfinal
versions of a few core components,"

Do you have the patched version, or a version ordered before July 28 ?

Can you check the .Net Framework version number by running this aspx page ?

version.aspx:
------------------

<%@ Page Language="VB" %>
<html>
<head>
</head>
<body>

<%
Response.Write("ASP.NET System Environment Version = " & System.Environment.Version.ToString())
%>
</body>
</html>

If the version reported is not 2.0.50727.42, you have the unpatched version.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"nickname" <ni*******@newsgroups.nospamwrote in message
news:86**********************************@microsof t.com...
Thanks for the reply. I have never had the beta version of any products
install on the machine. However have checked the registry keys mention and
they all have just 2.0.0.0 present.

Anybody have any other ideas what might have caused this?
"Juan T. Llibre" wrote:
That is a common problem when beta versions of Visual Studio
aren't fully uninstalled before the release version is installed, or when
Visual Studio's components are uninstalled in the wrong order.

See if this workaround listed in my bug report help you get it back :
http://lab.msdn.microsoft.com/produc...7-767b6d7d750a

FDBK21319#2: Remove Registry Entries that cause the problem
Thanks to Chris Adams:
http://www.eggheadcafe.com/forums/Fo...=20592&INTID=6

To fix, check the following 3 regkeys :
HKEY_CLASSES_ROOT\CLSID\{7D23CCC6-A390-406E-AB67-2F8B7558F6F6}\InprocServerÂ*32
HKEY_CLASSES_ROOT\CLSID\{FD5CD8B1-6FE0-44F3-BBFB-65E3655B096E} \InprocServer32
HKEY_CLASSES_ROOT\CLSID\{FEDB2179-2335-48F0-AA28-5CDA35A2B36D}\InprocServerÂ*32

Under (expand) InProcServer32, look for the presence of a non-2.0.0.0 (example 2.0.36.0)
and remove it. It has a reference that causes this to break.

WARNING : don't fool with the registry if you are not proficient doing that.

You can work around the problem, if editing the registry doesn't fix it, by using
Denis Bauer's ASP.NET Version Switcher to switch ASP.NET versions.

http://www.denisbauer.com/NETTools/A...nSwitcher.aspx

While it doesn't edit ASP.NET configuration files, at least it allows you
to pick the version of the framework will be used for specific websites.

Here's instructions on how to manually uninstall beta versions of Visual Studio 2005
http://msdn.microsoft.com/vstudio/su...l/default.aspx

Or, you might want to use the VS 2005 beta cleanup tool.
http://go.microsoft.com/fwlink/?LinkId=47598


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"nickname" <ni*******@newsgroups.nospamwrote in message
news:F5**********************************@microsof t.com...
I am running SBS 2003 R2 and have installed the dotnet framework version 2.0
and registered it with IIS. However I do not have the ASP.net tab in IIS
Manager, how can i enable this?

Thanks


Nov 4 '06 #5
Hi,

As Juan suggested, beta version might be one possible cause of the issue.

Besides that, there might be other possible causes.

If the server is 64 bit, it's a known issue that the ASP.NET version tab
will not work if they're running IIS under wow64. However, since you're
using SBS 2003 R2 which only has 32 bit, this should not be the case.

You may try the following steps to see if it can manually register the
extension:

1. Manually run the install for ASP.NET:

ASPNET_regiis -i

2. Register the dll for the MMC:

regsvr32.exe
"C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mmc aspext.dll"

3. "rundll32.exe"
"C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\web engine.dll",RegisterAspNet
MMC

4. From a command prompt run:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\rega sm.exe
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\AspN etMmcExt.dll
/tlb:AspNetMMCExt.tlb

5. Change the About value in
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MMC\SnapIns \{fedb2179-2335-48f1-aa28-
5cda35a2b36d}" from {7D23CCC6-A390-406F-AB67-2F8B7558F6F7} to
{7D23CCC6-A390-406F-AB67-2F8B7558F6F6}

======================================

The ASP.NET tab that displays in IIS is an MMC Extension of the IIS MMC.
If the tab is not showing, you can do the following to see if you can
manually add it:

1. Start | Run
2. Type mmc and click Open
3. From File menu, select Add/Remove Snap-in
4. Click Add
5. Select Internet Information Services (IIS) MMC and click Add
6. Click Close
7. Click the Extensions tab, you should see ASP.NET Management Extension -
ensure it is checked
8. Click OK
9. Right-click a web site and select Properties to confirm the tab displays
======================================

Additional Information about the tab:

If you right-click on the "Web Sites" folder and select Properties, the
ASP.NET tab displays a version that cannot be changed. This value comes
from:

[HKLM\Software\Microsoft\ASP.NET]
RootVer Reg_SZ 2.0.50727.0

aspnet_regiis change this value as well.

The ASP.NET tab on each web site displays a dropdown of the versions. The
keys under HKLM\Software\Microsoft\ASP.NET\ are used to populate the
versions displayed.

Let me know if above suggestion works.

Sincerely,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 5 '06 #6

Walters steps did not work for my instance of Windows Server 2003 R2.
Step 4 I received a permissions error even while logged in as local
administrator. I have yet to find a valid fix to this issue. The
work-around is simply unacceptable. Anyone else have any ideas?

Dec 7 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Pieter | last post by:
Hi, I migrated one of my solutions(VB.NET 1.1, containing a Windowds Forms project and a Class Library project) to the 2.0 Framework using the inbuild-wizard. After migrating the...
4
by: Leeor Chernov | last post by:
Hi , I Used the object Excell Application(COM INTEROP) and it is staying as an open process, And the owner(User Name) is ASPNET Altough I try to release it with :...
2
by: WB | last post by:
Hi, I'm building a Windows application using Visual Studio 2005. For some reason, the Configuration Manager is missing from my Toolbar. So now in order to change my build mode (eg. Debug,...
10
by: kabradley | last post by:
Hey guys, I'm using an embedded sql statement tied to a command button to append records in a certain table. The code for the sql statement is as follows. 'Define sql string strSQL = "INSERT INTO...
1
by: Brad Pears | last post by:
I am working on a vb .net 2005 project. Recently I wanted to changed the location of my builds from debug to release. I clicked on the 'Build option and for some unknown reason, the "configuration...
5
by: gbngrg | last post by:
I have no idea with what i got infected. But i lost my task manager (got that fixed but), Registry editing has been disabled, run tab and shutdown tab in the start menu is missing. Now even though i...
4
by: WT | last post by:
Hello, How could we simulate the IsClientScriptBlocRegistered method of ClientScript when we use an update panel and the static ScriptManager ? Is this test already included in the...
1
by: Miro | last post by:
I am going throug a vb 2005 book, but I am using vs 2008 professional, and I cant seem to find a menu option its talking about. I am wondering if this has moved - i cannot seem to find it for the...
7
by: =?Utf-8?B?QU9UWCBTYW4gQW50b25pbw==?= | last post by:
Hi, I have been using the code (some of it has been removed for simplicity) below to allow authenticated (using ASP.NET membership database) users to get a file from their archive area. It...
1
by: LittlePete2539 | last post by:
I've been using Access 2002 Developer Edition for a number of years, and used the switchboard manager many times, although probably not since I got my latest laptop. Now it's missing. I know it was...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.