上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: 网页可见区域宽:document.body.clientWidth;网页可见区域高:document.body.clientHeight;网页可见区域宽:document.body.offsetWidth +" (包括边线的宽)";网页可见区域高:document.body.offsetHeight +" (包括边线的宽)";网页正文全文宽:document.body.scrollWidth;网页... 阅读全文
posted @ 2008-02-20 16:39 Microbar 阅读(237) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/abatei/archive/2008/02/20/1075760.html 泛型优点: 1,操作中避免强制转换或装箱操作的成本或风险 2,安全高效 实际使用: 1,泛型List的运算速度比ArrayList的快,能用ArrayList的地方都可以用List取代 List ary = new List(); for (... 阅读全文
posted @ 2008-02-02 16:36 Microbar 阅读(223) 评论(3) 推荐(1) 编辑
摘要: microbar@126.com:29909915。 Waysonline ( 网址:http://www.waysonline.com ) 阅读全文
posted @ 2008-01-28 23:05 Microbar 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ASP.Net (GetWebcontent.aspx) 无标题文档 ---------------------------------------------------------------------------------------------- 阅读全文
posted @ 2008-01-26 20:38 Microbar 阅读(287) 评论(1) 推荐(0) 编辑
摘要: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------... 阅读全文
posted @ 2008-01-07 10:31 Microbar 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1、背景音乐: 阅读全文
posted @ 2007-12-28 14:59 Microbar 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1、DNN是基于N-Tier的,分UI、BLL、DAL、DSL等四层,UI就是具体的Web Controls(*.ascx),BLL就是业务逻辑,DAL就是基于Provider模式的数据存取,DSL就是数据存储,根据实际情况可能是ACCESS、MS SQL、Oracle、MySQL等; 2、DNN是基于模块的,这意味着你开发的模块都必须使用Web Control(.ascx)并继承PortalM... 阅读全文
posted @ 2007-12-22 09:53 Microbar 阅读(272) 评论(1) 推荐(0) 编辑
摘要: http://group.zol.com.cn/12/5_118742.html 运行命令:Alt+F2 1、ADSL上网:Applications(应用程序)──附件──终端(Treminal)运行:sudo pppoeconf 一路回车,注意中途会让你输入你的宽带账号和密码 2、下载更新:System(系统)──系统管理──软件源:点击Third-Party Software,将里面的两... 阅读全文
posted @ 2007-12-11 13:47 Microbar 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Random random = new Random(); char c1 = (char) random.Next(65, 90);一个随机大写字母 char c2 = (char) random.Next(97, 122);一个随机小写字母 阅读全文
posted @ 2007-12-04 14:24 Microbar 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1、boxing/unboxing 装箱就是将值类型(value type)转换为引用类型(reference type)的过程;反之,就是拆箱 值类型-> Object(装箱) 反之,就是拆箱 box的时候,我们不需要显式的类型转换,但是在unbox时就必须进行类型转换。 2、System.Collections.Generic.list item=new System.Collection... 阅读全文
posted @ 2007-09-25 09:54 Microbar 阅读(244) 评论(2) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页