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

yinschao1 2008-07-05 03:54:32
我的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>
...全文
53 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
yinschao1 2008-07-05
  • 打赏
  • 举报
回复
谁能帮帮我?
yinschao1 2008-07-05
  • 打赏
  • 举报
回复
本地运行是没有错误~~放上服务器就有问题了~
conannb 2008-07-05
  • 打赏
  • 举报
回复
按照它说的 设置为off 查看错误原因 或者登陆到服务器 本地浏览察看错误

62,166

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧