摘要:
时间校验器处理过程:从网络获得标准北京时间解析时间修改本地时间*注:对于Windows vista以上系统修改本地时间需要管理员权限,所以要用管理员权限打开开发工具,后续运行效验器时也要用管理员权限运行.实现:1 获得标准北京时间WebRequest wrt = null; WebResponse wrp = null; wrt = WebRequest.Create("http://www.time.ac.cn/timeflash.asp?user=flash"); wrt.Credentials = CredentialCache.DefaultCredentials; 阅读全文