posted @ 2008-08-26 14:18 LonelyStar 阅读(1777) 评论(0) 推荐(0) 编辑
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 2 3 9 10 11 12 13 14 用c#来实现:ScriptManager.RegisterStartupScript(this.Page, this... 阅读全文
摘要:
Internet Explorer Developer Toolbar 阅读全文
posted @ 2008-08-26 09:41 LonelyStar 阅读(164) 评论(0) 推荐(0) 编辑
摘要:
取得某个对象的父对象 this.parentElement 或者 this.parentNode this.children(0) 包含的第一个子元素 this.previousSibling 同一级别的相邻的前一个元素 this.nextSibling 同一级别的相邻的下一个元素 nextSibling:返回下一兄弟节点 例如:测试 要想取“测试”这两个中文说明... 阅读全文
posted @ 2008-08-22 15:56 LonelyStar 阅读(10927) 评论(0) 推荐(0) 编辑
摘要:
RecipientInfo.cs Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections.Generic; 3using System.Text; 4 5... 阅读全文
posted @ 2008-08-22 09:47 LonelyStar 阅读(244) 评论(0) 推荐(0) 编辑
摘要:
可以通过 CSS 的 Pagebreak 来处理 强制分页常用的二种: { page-break-after: always; /*在标签后换页*/ } { page-break-before: always; /*在标签前换页*/ } 这二个当中,大概最常用的就是 page-break-after: always,就是在指定的标签后强制换页,可以参考下面的 HTML ... 阅读全文
posted @ 2008-08-21 15:52 LonelyStar 阅读(3588) 评论(0) 推荐(0) 编辑
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighl... 阅读全文
posted @ 2008-08-20 13:45 LonelyStar 阅读(471) 评论(0) 推荐(0) 编辑
摘要:
select ltrim(substring(convert(nvarchar(50),getdate(),100), len(convert(nvarchar(50),getdate(),100)) - 7,8)) 阅读全文
posted @ 2008-08-18 15:05 LonelyStar 阅读(302) 评论(0) 推荐(0) 编辑
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->private static DateTime GetFridayDate(DateTime standardDate) { int weekNum = ... 阅读全文
posted @ 2008-08-15 10:38 LonelyStar 阅读(505) 评论(0) 推荐(0) 编辑