But how could you live and have no story to tell!
访问统计 original graphics

摘要: 网络上有关iis的问题和相关解决方案,多不胜搜,但很多都比较零散,没有系统的解决方案;另外,有些解决方法,似是而非,不能找到其中的问题关键点,本人平时对于服务器的应用上也有点实践,因此,今天稍稍总结一点平时遇到地问题和解决方法,特别是对iis的特殊权限引起问题、iis应用程序池假死问题和比较罕见的iis重启命令和自动重启办法。其它相关问题,继续关注本博。 阅读全文
posted @ 2009-10-13 17:11 nextsoft 阅读(3504) 评论(0) 推荐(0) 编辑
摘要: public static bool IsFileInUse(string fileName) { bool inUse = true; FileStream fs = null; try { fs = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.None); inUse = false; } catch {... 阅读全文
posted @ 2009-10-13 17:10 nextsoft 阅读(1798) 评论(0) 推荐(0) 编辑