上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
  2007年5月10日
摘要: SET NOCOUNT ONDECLARE @LogicalFileName sysname,@MaxMinutes INT,@NewSize INT USE cms -- 要操作的数据库名SELECT @LogicalFileName = 'cms_log', -- 日志文件名@MaxMinutes = 10, -- Limit on time allowed to wrap log.@New... 阅读全文
posted @ 2007-05-10 10:27 JIN Weijie 阅读(258) 评论(0) 推荐(0) 编辑
  2007年4月30日
摘要: # File soap/property.rb, line 325 def inject(init) result = init each do |item| result = yield(result, item) end result end 阅读全文
posted @ 2007-04-30 17:49 JIN Weijie 阅读(150) 评论(0) 推荐(0) 编辑
  2007年4月28日
摘要: 阅读全文
posted @ 2007-04-28 16:52 JIN Weijie 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2007-04-28 16:52 JIN Weijie 阅读(156) 评论(0) 推荐(0) 编辑
  2007年3月12日
摘要: 阅读全文
posted @ 2007-03-12 17:54 JIN Weijie 阅读(359) 评论(0) 推荐(0) 编辑
  2007年2月5日
摘要: 前加^后加$比如^[\d]+$abc123这个就不match了,IsMatch返回false如果[\d]+abc123 IsMatch的话就会返回true 阅读全文
posted @ 2007-02-05 14:09 JIN Weijie 阅读(289) 评论(0) 推荐(0) 编辑
  2007年1月31日
摘要: public static string[] SplitStringIntoMultipart( string input , int eachCount ) { if( input.Length == 0 ) return new string[0]; if( input.Length <= eachCount ) return new string[1]{input}; ... 阅读全文
posted @ 2007-01-31 16:35 JIN Weijie 阅读(549) 评论(0) 推荐(0) 编辑
  2006年11月22日
摘要: from: http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html 阅读全文
posted @ 2006-11-22 13:50 JIN Weijie 阅读(173) 评论(0) 推荐(0) 编辑
  2006年11月21日
摘要: here is the code... 阅读全文
posted @ 2006-11-21 21:37 JIN Weijie 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: 早上实现了在子页面更新数据以后,父页面刷新树的功能 思路: 父页面有个隐藏的html button作为proxy,子页面保存完数据以后,用js调用父页面的html button的触发函数click(); 父页面有个asp.net的link button控件,text="",等于也是隐藏的,它负责调用后台cs代码里的负责刷新树的方法; 父页面的html button onc... 阅读全文
posted @ 2006-11-21 21:36 JIN Weijie 阅读(731) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页