2010年9月8日
摘要: 1.创建自定义的特性类(继承Attribute类)。  codingas below[AttributeUsage(AttributeTargets.Property,AllowMultiple=false,Inherited=false)] public class FileVerification:Attribute { private string _regexStr; public str... 阅读全文
posted @ 2010-09-08 11:15 新郎 阅读(594) 评论(0) 推荐(0) 编辑
  2010年8月30日
摘要: select :  $("#id").val()选择当前选择的值, ==null 表示没有当前没有别选择;            $("#id")[0].selectIndex = 0 第一项默认被选择  多选:  $("#" + str.id).find('option:selected').each(function(i) { alert(this.innerText); 获取多个被选择的项c... 阅读全文
posted @ 2010-08-30 11:15 新郎 阅读(203) 评论(0) 推荐(1) 编辑
  2010年7月30日
摘要: 1.select "databae=> configer data conections"   1. select "create new data source";  2. select "user data source";  3. select "microsoft odbc for oracle";  4.                    (1)                ... 阅读全文
posted @ 2010-07-30 10:53 新郎 阅读(2092) 评论(0) 推荐(0) 编辑
  2010年6月3日
摘要: 1.必须应用System.serviceModel.Web;2.应用System.Runtime.Serialization.Json;System.Runtime.Serialization;3.coding /// <summary> /// 序列化 /// </summary> /// <typeparam name="Entity"></typep... 阅读全文
posted @ 2010-06-03 22:31 新郎 阅读(337) 评论(0) 推荐(0) 编辑
  2010年4月21日
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title&g... 阅读全文
posted @ 2010-04-21 00:56 新郎 阅读(214) 评论(0) 推荐(0) 编辑
  2010年3月24日
摘要: http://www.cnblogs.com/yank/archive/2008/09/24/1101823.html 阅读全文
posted @ 2010-03-24 11:38 新郎 阅读(112) 评论(0) 推荐(0) 编辑
  2010年3月19日
摘要: void dgResult_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.ColumnIndex == 0 && e.RowIndex != -1) { using ( Brush gridBrush = new SolidBrush(this.dgResult.GridColor)... 阅读全文
posted @ 2010-03-19 16:43 新郎 阅读(281) 评论(0) 推荐(0) 编辑
摘要: stringstr = "{\"wang\":\"wang\",\"tiang\":\"tttt\"}XmlHttpHelper.transmit(true, "post", "text", "WebForm1.aspx", call, null);function call(respones) {var p = eval("(" + respones + ")");alert(p.wang);}... 阅读全文
posted @ 2010-03-19 13:53 新郎 阅读(288) 评论(0) 推荐(0) 编辑
  2010年3月18日
摘要: select top 1800 * from AJ_AQJDSBwhere id >(select max(id) from (select top 2000 id from AJ_AQJDSB order by id) b)select top 1800 * from AJ_gcxx where id not in (select top 2000 id from AJ_gcxx orde... 阅读全文
posted @ 2010-03-18 16:55 新郎 阅读(698) 评论(0) 推荐(0) 编辑
  2010年3月4日
摘要: + 一个或多个?0个或1个* 0个或多个\d 0-9. 除了换行符以外的字符\w 字母、数字、下划线、汉字\s 空白符\d 单词的开始或结束| 条件分支 阅读全文
posted @ 2010-03-04 10:44 新郎 阅读(111) 评论(0) 推荐(1) 编辑