找回密码
 立即注册

QQ登录

只需一步,快速开始

lgxl6925

初级会员

43

主题

130

帖子

397

积分

初级会员

积分
397

微信认证勋章

lgxl6925
初级会员   /  发表于:2016-3-26 20:11  /   查看:6828  /  回复:10
在本地测试是正常的,上传服务器后,以iis测试也是正常的,但远程的电脑不能显示,加载网格控件时出错

10 个回复

倒序浏览
lgxl6925
初级会员   /  发表于:2016-3-28 10:58:54
沙发
BIN,fp_client文件夹也拷了,web.config中key="fp_client".............也设置了
在web服务器上http://ip地址:端口号/主页名,测试是成功的
换一台网络上的机子就不行了。
提示:server error in ‘/’ application错误
回复 使用道具 举报
lgxl6925
初级会员   /  发表于:2016-3-28 13:40:43
板凳
错误:Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

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

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-3-28 13:56:22
地板
您上服务器访问下网站或者设置 <customErrors mode="Off"/>
看下具体报什么了错误
回复 使用道具 举报
lgxl6925
初级会员   /  发表于:2016-3-28 14:37:26
5#
服务器上游览器输入地址:
http://IP地址:端口号访问是正常的,没报错
换一台机子就不行了,一到加载控件时就报错
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-3-28 14:57:18
6#
建议您 在webconfig 里配置

  1. <configuration>
  2.     <system.web>
  3.         <customErrors mode="Off"/>
  4.     </system.web>
  5. </configuration>
复制代码

提供更详细的错误说明,或者截图。
回复 使用道具 举报
lgxl6925
初级会员   /  发表于:2016-3-28 15:49:23
7#
加了<customErrors mode="Off"/>
错误提示还是原来的,
回复 使用道具 举报
lgxl6925
初级会员   /  发表于:2016-3-28 15:49:29
8#
加了<customErrors mode="Off"/>
错误提示还是原来的,
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-3-28 17:16:59
9#
lgxl6925 发表于 2016-3-28 15:49
加了
错误提示还是原来的,

因为这边看不到您的具体错误,所以也无法给出建议。

你可以先Google 下 “asp.net Server Error in Application解决方法”,找下解决办法。
回复 使用道具 举报
lgxl6925
初级会员   /  发表于:2016-3-29 15:08:56
10#
谢谢版主,把代码一段段删除测试,才找到原因:
我的目的是把本地excel导入dataset,在spread上展现并修改,最后写入后台数据库.
与spread控件无关,是asp.net的fileupload惹的事。
在有的游览器下不能获取本地文件路径。
回复 使用道具 举报
12下一页
您需要登录后才可以回帖 登录 | 立即注册
返回顶部