how to fix server error in '/' application?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shobhyadav
    New Member
    • Jan 2011
    • 2

    how to fix server error in '/' application?

    Hi
    I am new to ASP.Net, I have created a sample website but when i am deploying it in IIS in windows server 2003, I am encountering the following error. Can anyone please help me to fix the following error

    Configuration Error
    Description:An error occured during the processing of a configuration file required to service this request. Please review the s[ecific error details below and modify your configuration file appropriately.
    Parse Error Message:Unrecog nised attribute 'type'
    Version Informatiom:Mic rosoft.Net Framework Version:1.1.432 2.2379;ASP.NET Version:1.1.432 2.2379
    <configSectio n>
    <SectionGroup name="system.we b.extension" type="system.we b.configuration .SystemwebExten sionsSectionGro up,System.web.E xtensions,Versi on=3.5.0.0,Cult ure=neutral,Pub licKeyToken=31B F3856AD364E35">



    Thanks in Advance
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Are you sure that you have the .NET 3.5 Framework installed on the computer hosting the web server?

    The 3.5 Framework is an add-on to the 2.0.x Framework. This means that IIS has to be configured in such a way that ASP.NET 2.0.x is "Allowed". You also have to make sure that your website is running under ASP.NET 2.0.x since your application has been developed with the 3.5 Framework.

    I think you have a combination of problems:
    1. You probably don't have the .NET 3.5 Framework installed
    2. IIS is trying to run your application using the .NET 1.1.x Framework


    -Frinny

    Comment

    Working...