摘要:
症状: 机器正在调试或允许IIS时,被异常中断服务(比如停电),然后再次IIS允许页面时,CPU资源占用100%.即使重新启动也无效。 原因分析: 发生中断时,IIS会写异常日志,但是此时写入了乱码,找成IIS一直写日志的死循环,耗尽了系统资源。找到系统路径\System32\Logfiles\W3SVC1 下当天的错误日志文件,即可看到以上内容。 解决: 删除 系统路径\System32\Log... 阅读全文
摘要:
程序代码: label1.Text = "2004-1-1 15:36:05"; label2.Text = "2004-3-1 20:16:35"; DateTime d1 =new DateTime(2004,1,1,15,36,05); DateTime d2 =new DateTime(2004,3,1,20,16,35); TimeSpa... 阅读全文