摘要:
SQL 只取重复记录一条记录并且是最小值 阅读全文
摘要:
CREATE function [dbo].[Get_DepChildren] ( @ID int ) RETURNS @Tree Table (ID [int] IDENTITY (1, 1),PID Int,FID Int,SN Varchar(50), Name Varchar(150)) as begin --declare @ID Int --set @ID=71 --de... 阅读全文
摘要:
function del_dg() { $.messager.defaults = { ok: "是", cancel: "否" }; var node = $('#tbClientClass').treegrid('getSelected'); //单条记录删除 if (node !... 阅读全文
摘要:
String.Format数字格式化输出 {0:N2} {0:D2} {0:C2} (转) //格式为sring输出 // Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); // Label2.Text = "asdfadsf"+a.ToString()+"adsfasdf"; // Label1.Text = string... 阅读全文
摘要:
左,右(上、下)布局 左、中、右 阅读全文
摘要:
DataTable dtGx = new DataTable(); dtGx = SqlHelper.SqlGetDataTable(StrSql, "tbUserGx"); this.treeListGx.DataSource = dtGx; DataRow drGx = dtGx.NewRow()... 阅读全文
摘要:
{ field: "contractmoney", title: "合同总价", width: 72, formatter: function (value, row, index) { if (row != null) { return parseFloat(value).toFixed(... 阅读全文
摘要:
string path = Server.MapPath(" PDFs"); bool tfOpenTemp= IsFileInUse(path + " /Doc1.pdf "); if (!tfOpenTemp) { } else ... 阅读全文
摘要:
中文字体font-family常用列表 Windows: 新細明體:PMingLiU 細明體: MingLiU 標楷體: DFKai-SB 黑体: SimHei 新宋体: NSimSun 仿宋: FangSong 楷体: KaiTi 仿宋_GB2312:FangSong_GB2312 楷体_GB2312:KaiTi_GB2312 微軟正黑體: Microsoft Jhe... 阅读全文
摘要:
原文:http://www.cnblogs.com/LifelongLearning/archive/2011/06/22/2086802.html PdfPTable和PdfPCell对象,我们可以制作出丰富多彩的表格,可以制作出跨行、跨列,不同表格线,单元格中的文字旋转等效果,如下所示: 1、文 阅读全文