08 2010 档案

摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Reflection;using Microsoft.Practices 阅读全文
posted @ 2010-08-23 17:24 xpwilson 阅读(145) 评论(0) 推荐(0)
摘要:function sortCol(cId) { return function compareTRs(tr1, tr2) { var value1 = tr1.cells[cId].firstChild.nodeValue; var value2 = tr2.cells[cId].firstChild.nodeValue; return value1.localeCompare(value2); ... 阅读全文
posted @ 2010-08-13 16:58 xpwilson 阅读(181) 评论(0) 推荐(0)