Configuration Error

Discussion in 'ASP.NET / ASP.NET Core' started by Acura66, Jan 11, 2009.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I have an application that worked in November. No changes were made. I went to it today and got the error message below. Any suggestions would be appreciated. Thanks, Jim



    Configuration Error 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: Section or group name 'system.web.extensions' is already defined. Updates to this may only occur at the configuration level where it is defined.

    Source Error:





    Code:
    Line 2:  <configuration>
    Line 3:    <configSections>
    Line 4:      <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    
     
  2. Bruce

    Bruce DiscountASP.NET Staff

  3. Bruce

    Bruce DiscountASP.NET Staff

    This looks like a conflict in configuration

    Just a wild guess, since your application is in /dotti sub directory, do you have a web.config in your root directory that have these settings defined?

    If you do, then that's your problem. You'll have to either remove it from the web.config within the /dotti directory OR use the <remove> tag to get rid of those.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page