关于WEB的问题

来源:百度知道 编辑:UC知道 时间:2024/05/05 15:14:31
web一直报错Runtime Error,每次只要把web.config覆盖下就又能打开网页,上了一会又报Runtime Error。
这是什么原因?
我是菜鸟~~最好讲的详细点

你的你的WEB.config用记事本找开,找到几个变量是1的,给改成0,保存试试,先把你的config文件备份一下,最好是发给我,让我看看!

清除恶意软件并清理注册表

你的你的WEB.config用记事本找开,找到几个变量是1的,给改成0,保存试试,先把你的config文件备份一下,最好是发给我,让我看看!

Runtime是运行时的意思,Runtime Error就是运行时错误,就是在运行期间出现的错误。

webopedia 关于 运行时错误的定义:

http://www.webopedia.com/TERM/r/runtime_error.html

An error that occurs during the execution of a program. In contrast, compile-time errors occur while a program is being compiled. Runtime errors indicate bugs in the program or problems that the designers had anticipated but could do nothing about. For example, running out of memory will often cause a runtime error.(运行时错误是程序执行期间发生的错误,它不同于编译期间发生的错误.运行时错误可能是程序中的毛病引起的,也可能程序并无错误,例如机器存储器不够引起)

Note that runtime errors differ from bombs or crashes in that you can often recover gracefully from a runtime error.(运行时错误不同于炸弹或系统垮掉,运行时错误一般不影响操作系统运行)