| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 631 人关注过本帖
标题:请高人帮助,谢谢。
只看楼主 加入收藏
ldm2010
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2010-3-29
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
请高人帮助,谢谢。
web.config原文件如下:
<?xml version="1.0"?>
<!--
    注意: 除了手动编辑此文件以外,您还可以使用
    Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
     “网站”->“ 配置”选项。
    设置和注释的完整列表在
    machine. 中,该文件通常位于
    \Windows\\Framework\v2.x\Config 中
-->
<configuration>
    <configSections>
        <section name="rewriter" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
    </configSections>
    <appSettings>
  <add key="DATA" value="1" />
  <add key="ACCESS" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|data.mdb" />
  <add key="SQL" value="Provider=SQLOLEDB;server=(local);database=aoshuosoft; User Id=aoshuosoft; pwd=aoshuosoft" />
  <add key="FCKeditor:BasePath" value="~/FCKeditor/" />
  <add key="FCKeditor:UserFilesPath" value="~/UpFile" />
  <add key="admin" value="admin" />
  <add key="KEY" value="B91022B9E35A0A1F0C15B3AE3C67611F" />
  <add key="WEB" value="http://www. />
  <add key="WEBID" value="1" />
  <add key="WEBIP" value="60.217.224.8" />
  <add key="WEBDNS" value=" />
  <add key="FY" value="360" />
  <add key="KJ" value="100" />
  <add key="TEST" value="7" />
  <add key="UPFILE" value="5000" />
  <add key="FILETYPE" value="exe,zip,rar,mid,gif,htm,html,jpeg,jpg,bmp,avi,mp3,txt,swf,rm" />
  <add key="SHH" value="20899485" />
  <add key="MD5" value="ao8858258" />
 </appSettings>
    <connectionStrings/>
    <system.web>
    <identity impersonate="true" userName="aoshuosoft" password="aoshuosoft" />
        <customErrors mode="OFF"/>
     <sessionState mode="StateServer"   stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="1000"/>
        <httpModules>
            <add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter"/>
        </httpModules>
        <!--
   
            设置 compilation debug="true" 将调试符号插入
            已编译的页面中。但由于这会
            影响性能,因此只在开发过程中将此值
            设置为 true。
        -->
        <compilation debug="false">
   <assemblies>
    <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
   </assemblies>
  </compilation>
        <!--
            通过 <authentication> 节可以配置 使用的
            安全身份验证模式,
            以标识传入的用户。
        -->
        <authentication mode="Windows"/>
        <!--
            如果在执行请求的过程中出现未处理的错误,
            则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
            开发人员通过该节可以配置
            要显示的 html 错误页
            以代替错误堆栈跟踪。

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
        <pages validateRequest="false" enableSessionState="true" enableViewState="true"></pages>
        <httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="2097151" executionTimeout="30000"/>
  </system.web>
  <rewriter>
    <rewrite url="~/news-(.*).aspx" to="~/news.aspx?id=$1"/>
    <rewrite url="~/newssort-(.*).aspx" to="~/news.aspx?sortid=$1"/>
    <rewrite url="~/newspage-(.*).aspx" to="~/news.aspx?page=$1"/>
    <rewrite url="~/product-(.*).aspx" to="~/product.aspx?id=$1"/>
    <rewrite url="~/placard-(.*).aspx" to="~/placard.aspx?id=$1"/>
    <rewrite url="~/productsort-(.*).aspx" to="~/product.aspx?sortid=$1"/>
    <rewrite url="~/productpage-(.*).aspx" to="~/product.aspx?page=$1"/>
    <rewrite url="~/down-(.*).aspx" to="~/down.aspx?id=$1"/>
    <rewrite url="~/downsort-(.*).aspx" to="~/down.aspx?sortid=$1"/>
    <rewrite url="~/downpage-(.*).aspx" to="~/down.aspx?page=$1"/>
    <rewrite url="~/job-(.*).aspx" to="~/job.aspx?id=$1"/>
    <rewrite url="~/jobsort-(.*).aspx" to="~/job.aspx?sortid=$1"/>
    <rewrite url="~/jobpage-(.*).aspx" to="~/job.aspx?page=$1"/>
    <rewrite url="~/leavewordpage-(.*).aspx" to="~/leaveword.aspx?page=$1"/>
    <rewrite url="~/share-(.*).aspx" to="~/share.aspx?page=$1"/>
    <rewrite url="~/searchpage-(.*).aspx" to="~/search.aspx?page=$1"/>
    </rewriter>
</configuration>


上传到服务器后,显示如下:
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: This configuration section cannot be used at this path.  This happens when the site administrator has locked access to this section using <location allowOverride="false"> from an inherited configuration file.

Source Error:


Line 34:     <connectionStrings/>
Line 35:     <system.web>
Line 36:     <identity impersonate="true" userName="aoshuosoft" password="aoshuosoft" />
Line 37:         <customErrors mode="OFF"/>
Line 38:      <sessionState mode="StateServer"   stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="1000"/>
 

Source File: e:\www\liangdeming2010\wwwroot\web.config    Line: 36


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; Version:2.0.50727.3082

请问大家应该如果解决,谢谢大家
搜索更多相关主题的帖子: 高人 
2010-03-29 15:33
misswang
Rank: 8Rank: 8
来 自:湖北荆州
等 级:贵宾
威 望:15
帖 子:265
专家分:720
注 册:2010-3-11
收藏
得分:10 
Parser Error Message: This configuration section cannot be used at this path
这句话的意思好像是此节点不能在这里使用。。。
试试换个位置。。

misswp2010@
wangping103@
2010-03-30 12:59
zongshi123
Rank: 5Rank: 5
等 级:职业侠客
威 望:1
帖 子:50
专家分:310
注 册:2009-9-13
收藏
得分:10 
找出machine.config  
对比下,,
位置别弄错了

一个没房没车没钱没权没头没脑没心没肺没脸没皮的穷鬼垃圾小流氓外带人妖大尾(yi)巴狼
2010-04-01 16:55
快速回复:请高人帮助,谢谢。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014527 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved