有付出才会有回报。

有足够的勇气面对可以克服的挑战、有足够的度量接受不可克服的挑战、有足够的智慧来分辨两者的不同

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2006年9月3日

摘要: 阅读全文
posted @ 2006-09-03 23:29 程序人生~程序员 阅读(213) 评论(1) 推荐(0) 编辑

摘要: 1declare @temp varchar(150) 2declare @sql varchar(128) 3 4declare aa cursor for //声明游标 5 select name from sysobjects where type = 'u'order by refdate desc //游标所执行的语句 6open aa ... 阅读全文
posted @ 2006-09-03 20:48 程序人生~程序员 阅读(260) 评论(0) 推荐(0) 编辑

摘要: using System.Security.Cryptography;using System.Text;using System.IO;加密 DES#region 加密 DES public string Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider ... 阅读全文
posted @ 2006-09-03 20:47 程序人生~程序员 阅读(283) 评论(0) 推荐(0) 编辑