博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IIS 添加虚拟目录,Server Error in '/' Application报错。
阅读量:6046 次
发布时间:2019-06-20

本文共 1494 字,大约阅读时间需要 4 分钟。

Server Error in '/' Application报错。解决方法:右击虚拟文件夹,选择“转换成应用程序” 

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>
 

 解决方案: 

 添加了虚拟目录后,右击虚拟文件夹,选择“转换成应用程序” (convert  to application)就OK了。

 其他建议:

先用本机的 IIS 测试,不要用 VS 内附的 Web server,

並配置 <customErrors mode="Off"/>,以將真實的錯誤原因顯示出來,看是否仍会一样出错。

有可能是文件夹未开放写入权限,或有安全配置上的错误。

或远端机器上 IIS 的 .NET 版本、ajax 版本不符合。

转载于:https://www.cnblogs.com/watermarks/p/3433504.html

你可能感兴趣的文章
基于清单的启动器的实现
查看>>
外网用户通过citrix打印慢的解决方法
查看>>
STL容器的使用
查看>>
关于std::map
查看>>
JXL导出Excel文件兼容性问题
查看>>
VBoot1.0发布,Vue & SpringBoot 综合开发入门
查看>>
centos7 安装wps 后 演示无法启动
查看>>
git简单命令
查看>>
LAMP编译部署
查看>>
XenDesktop7.6安装部署入门教程
查看>>
HashMap的工作原理及HashMap和Hashtable的区别
查看>>
GregorianCalendar日历程序
查看>>
Sublime 中运行 Shell 、Python、Lua、Groovy...等各种脚本
查看>>
【Java集合源码剖析】ArrayList源码剖析
查看>>
linux的目录结构
查看>>
这次逻辑通了,
查看>>
HTMLHelper
查看>>
快速构建Windows 8风格应用29-捕获图片与视频
查看>>
OC语言Block和协议
查看>>
使用xpath时出现noDefClass的错误(找不到某个类)
查看>>