当前位置:编程学习 > C#/ASP.NET >>

代码放上服务器后就出问题了~~

我的web.config是这样的
<?xml version="1.0" encoding="gb2312"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
  <configSections>
    <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
  </configSections>
  <connectionStrings>
    <add name="Conn" connectionString="App_data/shop.mdb" />
    <add name="website" connectionString="网上商城" />
    <add name="cleanword" connectionString="qq" />
    <add name="upimagetype" connectionString=".gif|.jpg|.jpeg|.png" />
    <add name="upimagesize" connectionString="1024" />
    <add name="siteurl" connectionString="http://localhost/shop" />
    <add name="zhekou" connectionString="10" />
    <add name="skin" connectionString="default" />
  </connectionStrings>
  <RewriterConfig>
    <Rules>
      <RewriterRule>
        <LookFor>~/classproduct_(\d+)\.aspx</LookFor>
        <SendTo>~/classproduct.aspx?classid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/orproduct_(\d+)\.aspx</LookFor>
        <SendTo>~/orproduct.aspx?productor=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/product_(\d+)\.aspx</LookFor>
        <SendTo>~/product.aspx?productid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/other_(\d+)\.aspx</LookFor>
        <SendTo>~/other.aspx?otherid=$1</SendTo>
      </RewriterRule>
    </Rules>
  </RewriterConfig>
  <system.web>
    <httpHandlers>
      <add verb="*" path="*.aspx" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
    </httpHandlers>
    <compilation debug="true" defaultLanguage="c#" />
    <authentication mode="Windows" />
    <customErrors defaultRedirect="shop/default.aspx" mode="RemoteOnly" />
    <globalization requestEncoding="gb2312" responseEncoding="gb2312" />
    <pages validateRequest="false" autoEventWireup="false" />
    <httpRuntime maxRequestLength="20480" executionTimeout="45" />
  </system.web>
  <appSettings>
    <add key="FCKeditor:BasePath" value="~/FCKeditor/" />
  </appSettings>
</configuration>

放上服务器后变成这样的。我的是access数据库~~
“/”应用程序中的服务器错误。
--------------------------------------------------------------------------------

运行时错误 
说明: 服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止远程查看应用程序错误的详细信息(出于安全原因)。但可以通过在本地服务器计算机上运行的浏览器查看。 

详细信息: 若要使他人能够在远程计算机上查看此特定错误消息的详细信息,请在位于当前 Web 应用程序根目录下的“web.config”配置文件中创建一个 <customErrors> 标记。然后应将此 <customErrors> 标记的“mode”属性设置为“Off”。


<!-- Web.Config 配置文件 -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 

注释: 通过修改应用程序的 <customErrors> 配置标记的“defaultRedirect”属性,使之指向自定义错误页的 URL,可以用自定义错误页替换所看到的当前错误页。


<!-- Web.Config 配置文件 -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
  --------------------编程问答-------------------- 按照它说的 设置为off 查看错误原因 或者登陆到服务器 本地浏览察看错误 --------------------编程问答-------------------- 本地运行是没有错误~~放上服务器就有问题了~ --------------------编程问答-------------------- 谁能帮帮我?
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,