C# IIS服务器上的配置错误

C# IIS服务器上的配置错误,c#,asp.net,iis,C#,Asp.net,Iis,我已将我的C#webservice在IIS中上传到我的服务器。当我浏览服务时,我得到以下错误 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 appropria

我已将我的C#webservice在IIS中上传到我的服务器。当我浏览服务时,我得到以下错误

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 system.serviceModel.

Source Error: 


Line 105:    </runtime>
Line 106:
Line 107:    <system.serviceModel>
Line 108:        <bindings>
Line 109:            <basicHttpBinding>


Source File: E:\xxxx03102014\GoTV\abcderfcvngh\web.config    Line: 107 
Description:处理此请求所需的配置文件时出错。请查看下面的特定错误详细信息,并适当修改配置文件。
分析器错误消息:无法识别的配置节system.serviceModel。
源错误:
第105行:
第106行:
第107行:
第108行:
第109行:
源文件:E:\xx03102014\GoTV\abcderfcvngh\web.config行:107

我觉得该服务运行的是IIS 2.0或更低版本

system.service模型仅在3.0及更高版本中可用


尝试检查此站点的IIS中正在运行的应用程序池。

您必须将IIS池中的.NET版本从3.0更改为更高版本。

您的IIS是什么版本以及您的Web服务的目标.NET Framework版本?