摘要: --> --> 1/1 ... 阅读全文
posted @ 2014-11-23 16:09 南瓜asp 阅读(327) 评论(0) 推荐(0)
摘要: var oldtd1;var oldtd2;var oldtd3;var indexnum = 0;//document.getebyid简写方法function domByid(domid){ return document.getElementById(domid);}function do... 阅读全文
posted @ 2014-11-19 17:52 南瓜asp 阅读(406) 评论(0) 推荐(0)
摘要: 很多网站需要将好的会员号留着,或用于日后的盈利。实现方法不是本文讨论范围,本文仅列出用于检测靓号类型的一些正则。 靓号检测:主要可以检测连号(正连 12345、倒连65432)、AABB号、手机号码、日期号(生日号、年度号)、ABBCABB号,3位以上重复号。更多类型号码检测可以根据以下表达式改造... 阅读全文
posted @ 2014-11-18 21:25 南瓜asp 阅读(1281) 评论(0) 推荐(0)
摘要: 1 2 3 4 5 6 30 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 20... 阅读全文
posted @ 2014-11-17 22:27 南瓜asp 阅读(267) 评论(0) 推荐(0)
摘要: 1 2 3 4 ... 阅读全文
posted @ 2014-11-16 23:30 南瓜asp 阅读(422) 评论(0) 推荐(0)
摘要: 序列标题发件人一个java问题张三@qq.com删除一个c#问题李三@qq.com删除删除全选全反选,单删除,全删除。 序列 标题 发件人 ... 阅读全文
posted @ 2014-11-16 14:22 南瓜asp 阅读(123) 评论(0) 推荐(0)
摘要: 继承label父类 1 public class MsgDiv 2 { 3 private Timer timerLable = new Timer(); 4 /// 5 /// 消息回调 委托对象 6 /// ... 阅读全文
posted @ 2014-11-14 14:03 南瓜asp 阅读(363) 评论(0) 推荐(0)
摘要: 手写版 1 if exists(select * from sysobjects where name ='usp_Seachroom') 2 drop procedure usp_Seachroom 3 go 4 create proc usp_seachroom 5 @roomstate int... 阅读全文
posted @ 2014-11-14 13:58 南瓜asp 阅读(294) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace DAL 8 { ... 阅读全文
posted @ 2014-11-14 13:44 南瓜asp 阅读(151) 评论(0) 推荐(0)
摘要: 这道题目很值得思考,以下分别用三种方式搞定,第三种方式拒绝使用contains方法。方法一: int[] arr = new int[100]; // while (true) // { // Random rand = new R... 阅读全文
posted @ 2014-10-30 22:18 南瓜asp 阅读(462) 评论(0) 推荐(0)