2010-01-11 92 views
0

我有一個小型的Web應用程序用於報告和即時通訊遇到問題。當我在我的本地機器上運行應用程序時,它可以工作,但是當它在我們的服務器上時,它不會。我的應用程序使用.net 3.5框架和服務器安裝到它的框架...webconfig中的配置錯誤

這裏的錯誤

Server Error in '/' Application. 
-------------------------------------------------------------------------------- 

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: Unrecognized attribute 'type'. 

Source Error: 


Line 2: <configuration> 
Line 3:  <configSections> 
Line 4:   <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 
Line 5:    <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 
Line 6:     <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 


Source File: d:\inetpub\wwwroot\harrisinterface\web.config Line: 4 


-------------------------------------------------------------------------------- 
Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407 

回答

0

你說,你正在使用.NET 3.5。該錯誤表示您的虛擬目錄正在使用.NET 1.1(Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407)。檢查你的虛擬目錄配置,一切都應該運行良好。

1

您的網站在.NET 1.1下運行;你應該啓用.NET 2.0。

這裏是一個教程:Where's my .NET 3.5 (on IIS), Dude?

+0

是的,檢查你是否使用實際的框架。 – Chris 2010-01-11 21:40:23