文章分类 -  Code Copy

你了解Container吗?
摘要:列表时表项的序号可以用来表示。其他的呢?dottext里的一个两级的地区列表CityList.ascx 还是蛮不错的。 阅读全文
posted @ 2005-09-06 10:43 Michael J 阅读(183) 评论(0) 推荐(0)
登录、身份验证 以及 角色判断
摘要:public class Security { private static BlogConfig config; //Can not instantiate this object private Security(){} /**//// /// Check to see if the supplied creden... 阅读全文
posted @ 2005-09-01 14:23 Michael J 阅读(486) 评论(0) 推荐(0)
图片重新定义大小保存……
摘要:public class UploadPic { public UploadPic() { } /**//// /// 保存的方法 /// /// 上传文件的方法 /// 是否压缩图片,true的时候_minwidth和_minhight属性才有效 /// 是否... 阅读全文
posted @ 2005-08-30 17:21 Michael J 阅读(393) 评论(0) 推荐(0)
js 代码
摘要:function IsValidNumber(n){ if (n == null) return false; var l = n.length; if (l == 0) return false; var s = 0; if (n.charAt(0) == "-") s = 1; var i,c; f... 阅读全文
posted @ 2005-08-30 08:31 Michael J 阅读(302) 评论(0) 推荐(0)
一些代码的锦集
摘要:some good code from learning material public void CopyTo(TransformerData[] array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext(); ) { ... 阅读全文
posted @ 2005-08-18 08:44 Michael J 阅读(355) 评论(0) 推荐(0)