473,808 Members | 2,761 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IIS and .Net Framework

I'm moving to .Net Framework 2.0. I've got a preliminary app done, which runs
fine in Visual Studio 2005. I've compiled it and am trying to run the app
under IIS, which is returning the following message:

****

Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized configuration section 'connectionStri ngs'

Source Error:
Line 10: <configuratio n>
Line 11: <appSettings/>
Line 12: <connectionStri ngs>
Line 13: <add
Line 14: name="DeptInfoC onnection"
Source File: C:\Inetpub\wwwr oot\CIS\web.con fig Line: 12
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032; ASP.NET
Version:1.1.432 2.2032

****
It looks like IIS doesn't know about multiple versions of .Net being
installed, so I rand the aspnet_regiis.e xe, with -i (after reviewing other
posts and MSDN). And I get the same message. I'm not an admin guy, but this
is something that I need to get figured out. What do I need so IIS will
recognize ASP.Net 2.0? Thanks in advance.
Nov 21 '06 #1
4 2775
You need to install ASP.NET 2.0 on your IIS server and then in the
application configuration, select the .NET 2.0 framework.

Mike Ober.

"RAR in WA" <RA*****@discus sions.microsoft .comwrote in message
news:07******** *************** ***********@mic rosoft.com...
I'm moving to .Net Framework 2.0. I've got a preliminary app done, which
runs
fine in Visual Studio 2005. I've compiled it and am trying to run the app
under IIS, which is returning the following message:

****

Description: An error occurred during the processing of a configuration
file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized configuration section
'connectionStri ngs'
>
Source Error:
Line 10: <configuratio n>
Line 11: <appSettings/>
Line 12: <connectionStri ngs>
Line 13: <add
Line 14: name="DeptInfoC onnection"
Source File: C:\Inetpub\wwwr oot\CIS\web.con fig Line: 12
--------------------------------------------------------------------------
------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET
Version:1.1.432 2.2032

****
It looks like IIS doesn't know about multiple versions of .Net being
installed, so I rand the aspnet_regiis.e xe, with -i (after reviewing other
posts and MSDN). And I get the same message. I'm not an admin guy, but
this
is something that I need to get figured out. What do I need so IIS will
recognize ASP.Net 2.0? Thanks in advance.


Nov 21 '06 #2
in the IIS MMC, select the directory that the application is in and
right-click and select properties. On the ASP.Net tab change the version of
the framework to the 2.0 version. By default, IIS won't change this unless
you specifically tell it you want it changed.
--
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006
"RAR in WA" <RA*****@discus sions.microsoft .comwrote in message
news:07******** *************** ***********@mic rosoft.com...
I'm moving to .Net Framework 2.0. I've got a preliminary app done, which
runs
fine in Visual Studio 2005. I've compiled it and am trying to run the app
under IIS, which is returning the following message:

****

Description: An error occurred during the processing of a configuration
file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized configuration section
'connectionStri ngs'

Source Error:
Line 10: <configuratio n>
Line 11: <appSettings/>
Line 12: <connectionStri ngs>
Line 13: <add
Line 14: name="DeptInfoC onnection"
Source File: C:\Inetpub\wwwr oot\CIS\web.con fig Line: 12
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET
Version:1.1.432 2.2032

****
It looks like IIS doesn't know about multiple versions of .Net being
installed, so I rand the aspnet_regiis.e xe, with -i (after reviewing other
posts and MSDN). And I get the same message. I'm not an admin guy, but
this
is something that I need to get figured out. What do I need so IIS will
recognize ASP.Net 2.0? Thanks in advance.

Nov 21 '06 #3
Thanks, that was it. Didn't see a reference to that any place, although that
is what I kind of expected to need. MS should document that with the
information on registering the framework with iis....

"Mark Fitzpatrick" wrote:
in the IIS MMC, select the directory that the application is in and
right-click and select properties. On the ASP.Net tab change the version of
the framework to the 2.0 version. By default, IIS won't change this unless
you specifically tell it you want it changed.
--
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006
"RAR in WA" <RA*****@discus sions.microsoft .comwrote in message
news:07******** *************** ***********@mic rosoft.com...
I'm moving to .Net Framework 2.0. I've got a preliminary app done, which
runs
fine in Visual Studio 2005. I've compiled it and am trying to run the app
under IIS, which is returning the following message:

****

Description: An error occurred during the processing of a configuration
file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized configuration section
'connectionStri ngs'

Source Error:
Line 10: <configuratio n>
Line 11: <appSettings/>
Line 12: <connectionStri ngs>
Line 13: <add
Line 14: name="DeptInfoC onnection"
Source File: C:\Inetpub\wwwr oot\CIS\web.con fig Line: 12
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET
Version:1.1.432 2.2032

****
It looks like IIS doesn't know about multiple versions of .Net being
installed, so I rand the aspnet_regiis.e xe, with -i (after reviewing other
posts and MSDN). And I get the same message. I'm not an admin guy, but
this
is something that I need to get figured out. What do I need so IIS will
recognize ASP.Net 2.0? Thanks in advance.


Nov 23 '06 #4
re:
MS should document that with the information on registering the framework with iis.
It *is* documented.
The ASP.NET tab is just a graphical interface to aspnet_regiis.e xe.

If you run aspnet_regiis, from a command window in the .Net Framework directory,
without parameters, you'll see the complete set of possibilities documented.


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/
=============== =============== =====
"RAR in WA" <RA*****@discus sions.microsoft .comwrote in message
news:35******** *************** ***********@mic rosoft.com...
Thanks, that was it. Didn't see a reference to that any place, although that
is what I kind of expected to need. MS should document that with the
information on registering the framework with iis....

"Mark Fitzpatrick" wrote:
>in the IIS MMC, select the directory that the application is in and
right-click and select properties. On the ASP.Net tab change the version of
the framework to the 2.0 version. By default, IIS won't change this unless
you specifically tell it you want it changed.
--
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006
"RAR in WA" <RA*****@discus sions.microsoft .comwrote in message
news:07******* *************** ************@mi crosoft.com...
I'm moving to .Net Framework 2.0. I've got a preliminary app done, which
runs
fine in Visual Studio 2005. I've compiled it and am trying to run the app
under IIS, which is returning the following message:

****

Description: An error occurred during the processing of a configuration
file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized configuration section
'connectionStri ngs'

Source Error:
Line 10: <configuratio n>
Line 11: <appSettings/>
Line 12: <connectionStri ngs>
Line 13: <add
Line 14: name="DeptInfoC onnection"
Source File: C:\Inetpub\wwwr oot\CIS\web.con fig Line: 12
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET
Version:1.1.432 2.2032

****
It looks like IIS doesn't know about multiple versions of .Net being
installed, so I rand the aspnet_regiis.e xe, with -i (after reviewing other
posts and MSDN). And I get the same message. I'm not an admin guy, but
this
is something that I need to get figured out. What do I need so IIS will
recognize ASP.Net 2.0? Thanks in advance.



Nov 23 '06 #5

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

Similar topics

0
2034
by: Ravindra | last post by:
Well I installed the framework provided by microsoft , the problem is I am able to activate the smart tag in the doc file but when I Click on the Show Detils option in the information bridge the following errors are being dispayed 5:21:26 PM Error Message: OperationInstance: SoapException Stack Trace: Microsoft.InformationBridge.Framework.ExecutionEngine.EngineException: OperationInstance: SoapException --->...
3
20683
by: CMan | last post by:
Hi, We are currently trying to install .Net Framework v.1.1 on a server which already has v1.0. We are receiving the following error. Error 1704.An installation for Microsoft .NET Framework SDK (English) is currently suspended. You must undo the changes made by that installation to continue. Do you want to undo those changes?
18
3050
by: Cameron Laird | last post by:
QOTW: "... So I started profiling the code and the slowdown was actually taking place at places where I didn't expect it." -- Guyon Mor?e (and about twenty-three thousand others) " suggestion from the world of 'agile development': stop making so many decisions and start writing some actual code!" -- Peter Hansen Scott David Daniels and others illustrate that the most common answer for Python is, "It's (already) in there." In the...
6
2084
by: Joseph Geretz | last post by:
I recently upgraded my server to Windows 2003. The first thing I noticed is that my sample WebService pages no longer worked. The Invoke test button is missing. This is addresed by the following KB article: Microsoft Knowledge Base Article - 819267 INFO: HTTP GET and HTTP POST Are Disabled by Default http://support.microsoft.com/default.aspx?scid=kb;en-us;819267 The article advises that a new block be inserted into Web.config (or into
9
3218
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My questions are below... "David Good" wrote: > We have a network running both Win2k and Win2k3 webservers and our web sites > reside on a UNC network share that happens to be a Network Appliance NAS.
1
2260
by: Harry Simpson | last post by:
I know I drilled down into the Windows folder\Microsoft.net\Framework\v1.1.4322 folder and looked at the version of Mscorcfg.dll to get the SP level from the version number: Mine shows v1.1.4322.573 which is supposed to be 1.1 with no service packs.
3
3075
by: Shadow Lynx | last post by:
At the bottom of the default Error page that appears when Unhandled Exceptions occur, what exactly is the difference between the "Microsoft ..Net Framework Version" and the "ASP.NET Version"? I understand that the ASP.Net version is the version of ASP.Net that the current site is running under and it can be retreived with System.Environment.Version.ToString. What exactly is the Microsoft .NET Framework Version that is displayed? It is...
3
6630
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
13
6663
by: dancer | last post by:
I have made a new post because when I try to respond to another, I get the error, "Article Rejected -- Ill-formed message id" This is in response to the advice of Juan Libre to install Net Framework Service Pack 1 in order to use ASP.net 1.1 and the net Framework 1.1 ------------------------------------------------------------------------------------------------ I found the following file, "svcpack.log" at C:\WINNT. It contains many...
8
1911
by: Blasting Cap | last post by:
I'm using VS 2005, and have a dll in some code (system.core.dll) that was included in something someone sent me to run on my system. I have production on a server using Framework 2.0 that I want to keep intact. Will upgrading my development box to Framework 3.5 preclude any development or functionality in the 2.0 environment I am responsible for? BC
0
10374
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10374
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10114
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9196
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7651
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6880
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5686
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.