在web.config里面:
行 177:  <system.web>
行 178:    <httpModules>
行 179:      <add name="Tanson.WebSite.FlowStatistics.SqlINC" type="Tanson.WebSite.FlowStatistics.SqlINC"/>
行 180:    </httpModules>
行 181:    <httpHandlers>行179是起什么作用的?报这样的错是什么原因?跟服务器的登录权限有关吗?“/CentalineServer”应用程序中的服务器错误。
--------------------------------------------------------------------------------配置错误 
说明: 在处理向该请求提供服务所需的配置文件时出错。请检查下面的特定错误详细信息并适当地修改配置文件。 分析器错误信息: 未能加载类型“Tanson.WebSite.FlowStatistics.SqlINC”。 

解决方案 »

  1.   

    httpModeule是一个自定义的处理类
      

  2.   

    那语句是防注入用的, 可能你没把文件           SQLINC.DLL放入bin目录   ASP.NET 2.0通用防注入插件
    利用了httpModules对字符进行检测,仅仅对少数几个关键SQL命令进行了检测。
    跳过了multipart/form-data类型的数据。
    将SQLINC.DLL放入bin目录。在web.config中加入<httpModules>
    <add name="Tanson.WebSite.FlowStatistics.SqlINC" type="Tanson.WebSite.FlowStatistics.SqlINC"/>
    </httpModules>
    如果要去掉防注入功能,就把<httpModules>
    <add name="Tanson.WebSite.FlowStatistics.SqlINC" type="Tanson.WebSite.FlowStatistics.SqlINC"/>
    </httpModules>
     中的   <add name="Tanson.WebSite.FlowStatistics.SqlINC" type="Tanson.WebSite.FlowStatistics.SqlINC"/>
     删去就可以了