摘要: style="position:relative 父级DIVstyle="position:absolute 包含的DIV 阅读全文
posted @ 2012-08-30 10:06 liuliu_刘刘 阅读(137) 评论(0) 推荐(0) 编辑
摘要: WITH #temp AS (SELECT ROW_NUMBER() OVER( ORDER BY SUM(nReceiveVolume) desc) AS indexof,SUM(nReceiveVolume) AS sumVolume,vcCustID FROM Ord_PurchaseOrder GROUP BY vcCustID) SELECT * FROM #temp WHERE vcCustID='201010192292000844' 阅读全文
posted @ 2012-07-04 18:52 liuliu_刘刘 阅读(112) 评论(0) 推荐(0) 编辑
摘要: /***设置Cookie记录QQ***/function SetCookieVerifyingQQ(VerifyingQQ){ var CookieQQ=GetCookieVerifyingQQ(); if(CookieQQ==undefined) { CookieQQ=VerifyingQQ; } else { CookieQQ=CookieQQ+"|"+VerifyingQQ; } //获取当前时间 var date=new Date(); var expireDays=1; //将date设置为1天以后的时间 date.setTime(date.getTime()+e 阅读全文
posted @ 2012-06-29 11:36 liuliu_刘刘 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 1:----sql server,将datetime转换成varchar----SELECT CONVERT(varchar(20),GETDATE(),20)2:----创建一个临时表DataTable dt = new DataTable(); dt.Columns.Add("Index");//商品ID dt.Columns.Add("GoodsID");//商品ID dt.Columns.Add("MrID");//商家ID dt.Columns.Add("MrName");//商家名称 dt.Column 阅读全文
posted @ 2012-06-25 18:02 liuliu_刘刘 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 原因如下: 如果页面没有form,则不会弹出提示窗口。如果页面有form表单,a)< form method="post" ...> 会弹出提示窗口b)< form method="get" ...> 不会弹出以下几点供参考(来源于网络):一, window.opener.location.reload() 如果改页面没提交过,这个方法好使.但是这个页面一旦提交过后,系统就会提示"重试或取消”的对话框. 二, window.opener.location = window.opener.location;这个方法肯定不提 阅读全文
posted @ 2012-06-25 16:05 liuliu_刘刘 阅读(422) 评论(0) 推荐(0) 编辑