06 2017 档案

摘要:<img id="loginImg" src="/Index/1234.png" style="border-radius: 50%;" onerror="this.src='/Index/images/123.png'"> 阅读全文
posted @ 2017-06-28 09:58 杜子烟 编辑
摘要:/// /// 从URL获取值(字符串) /// public static string GetValueFromUrl(string key) { string keyvalue = HttpContext.Current.Request.QueryString[key]; i... 阅读全文
posted @ 2017-06-09 22:36 杜子烟 阅读(550) 评论(0) 推荐(0) 编辑
摘要:/// /// MD5 32位加密(大写) /// /// /// static string UserMd5(string str) { string cl = str; string pwd = ""; MD5 md5... 阅读全文
posted @ 2017-06-09 22:19 杜子烟 阅读(1722) 评论(0) 推荐(1) 编辑
摘要:static void Main(string[] args) { #region 定时器 TimerDemo td = new TimerDemo("TimerDemo", 1000); td.Enabled = true; td.TickEvent += TestHandler;... 阅读全文
posted @ 2017-06-09 21:58 杜子烟 编辑