08 2011 档案
摘要:使用MD5加密的方法:下载md5.js文件,在网页中引用该文件:<script type="text/javascript" src="md5.js"></script>在你需要使用MD5加密的地方如此调用:<script type="text/javascript" > hash = hex_md5("test");</script>http://pajhome.org.uk/crypt/md5/
阅读全文
摘要:问题描述: my windows 7 .net framework seems to be borked (i'm getting CLR20r3 errors from many applications like ati catalyst or fallout mod manager) and nothing works (.net 2.0 uninstall (with that cleanup tool) doesn't do anything and sfc /scannow doesn't fix that problem, either). i thoug
阅读全文
摘要:这是因为.NET Framework 1.0 和 1.1 这两个版本对许多未处理异常(例如,线程池线程中的未处理异常)提供支撑,而 Framework 2.0 版中,公共语言运行库允许线程中的多数未处理异常自然继续。在多数情况下,这意味着未处理异常会导致应用程序终止。一、C/S 解决方案(以下任何一种方法)1. 在应用程序配置文件中,添加如下内容:<configuration> <runtime> <legacyUnhandledExceptionPolicy enabled="true" /> </runtime></
阅读全文