摘要: Change picture Change name View your account Link other accounts sign out Our latest improvements ... 阅读全文
posted @ 2009-02-27 20:46 zxlin25 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.Collections.Ge... 阅读全文
posted @ 2009-02-27 15:24 zxlin25 阅读(2374) 评论(0) 推荐(0) 编辑
摘要: var fso, tf; fso = new ActiveXObject("Scripting.FileSystemObject"); // 创建新文件 tf = fso.CreateTextFile("c:""testfile.txt", true); // 填写数据,并增加... 阅读全文
posted @ 2009-02-27 13:27 zxlin25 阅读(724) 评论(0) 推荐(0) 编辑
摘要: Eval与DataBinder.Eval的区别 2009-02-20 15:35 DataBinder.Eval的基本格式 DataBinder.Eval(Container.DataItem,"XXX","{0}") 或者 还有一种据说微软说效率很高的方... 阅读全文
posted @ 2009-02-27 11:52 zxlin25 阅读(1563) 评论(1) 推荐(1) 编辑
摘要: string 集中常用的方法: substring public String substring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。 例如: "unhappy".substring(2) return... 阅读全文
posted @ 2009-02-27 11:01 zxlin25 阅读(1618) 评论(0) 推荐(1) 编辑
摘要: 1:string 类型表示零或更多 Unicode 字符组成的序列。string 是 .NET Framework 中 String 的别名。 尽管 string 是引用类型,但定义相等运算符(== 和 !=)是为了比较 string 对象(而不是引用)的值。这使得对字符串相等性的测试更为直观。例如... 阅读全文
posted @ 2009-02-27 10:18 zxlin25 阅读(272) 评论(0) 推荐(0) 编辑