2009年4月21日
摘要: FYI Link: Attribute在.net编程中的应用(一) Attribute在.net编程中的应用(二) Attribute在.net编程中的应用(三) Attribute在.net编程中的应用(四) Attribute在.net编程中的应用(五) Attribute在.net编程中的应用(六) HQL: Hibernate 大全中的大全 阅读全文
posted @ 2009-04-21 13:32 Atom Yan 阅读(2748) 评论(1) 推荐(1) 编辑
摘要: Scott Mitchell的ASP.NET2.0数据教程系列 C#精髓【月儿原创】第四讲 GridView 72般绝技 http://blog.csdn.net/21aspnet/archive/2007/03/25/1540301.aspx 手把手教你如何扩展GridView之自带分页 清清月儿 .NET万花筒 http://blog.csdn.net/21aspnet 阅读全文
posted @ 2009-04-21 13:30 Atom Yan 阅读(155) 评论(0) 推荐(0) 编辑
  2009年4月20日
摘要: 【经验分享】Ajax Control ToolKit 实战系列 阅读全文
posted @ 2009-04-20 11:27 Atom Yan 阅读(129) 评论(0) 推荐(0) 编辑
  2009年4月19日
摘要: Calendar控件编程 http://www.dbi-tech.com/productpage_StudioControlsCOM.aspx 阅读全文
posted @ 2009-04-19 23:04 Atom Yan 阅读(133) 评论(0) 推荐(0) 编辑
  2009年4月17日
摘要: 一 字符串中的用法 字符@表示,其后的字符串是个“逐字字符串”(verbatim string)。 @只能对字符串常量作用。 1.用于文件路径 以下是引用片段: string s_FilePath ="C:Program FilesMicrosoft.NETtest.txt"; 相当于 以下是引用片段: string s_FilePath =@"C:Prog... 阅读全文
posted @ 2009-04-17 08:46 Atom Yan 阅读(318) 评论(0) 推荐(0) 编辑
  2009年4月16日
摘要: 先看代码(以下代码使用在C#,环境ASP.NET): protected void Page_Load(object sender, EventArgs e) { test1("\a"); test1(@"\a"); test2("\a"); test2(@"\a"); test3("\a"); te... 阅读全文
posted @ 2009-04-16 16:40 Atom Yan 阅读(162) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/atomplus/admin/EditPosts.aspx 阅读全文
posted @ 2009-04-16 09:40 Atom Yan 阅读(133) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/artech/archive/2007/02/26/656901.html 阅读全文
posted @ 2009-04-16 09:13 Atom Yan 阅读(122) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jillzhang/archive/2008/04/04/1137189.html WPF天天见系列 http://www.cnblogs.com/YilingLai/archive/2006/12/21/598965.html 阅读全文
posted @ 2009-04-16 09:07 Atom Yan 阅读(388) 评论(1) 推荐(0) 编辑
  2009年4月14日
摘要: 127) Then '字节高位为0,表示英文字符 s = s + Chr(t) Else i = i +1 '当为汉字时,取第二个字节 t1 = AscB(MidB(Str1r,i,1)) s = s + Chr(t * 256 + t1) '将汉字两字节外码组合成ANSI码 End If Next GetText = s End Function '将字符... 阅读全文
posted @ 2009-04-14 10:58 Atom Yan 阅读(270) 评论(0) 推荐(0) 编辑