摘要:
用oracle sql对数字进行操作: 取上取整、向下取整、保留N位小数、四舍五入、数字格式化 取整(向下取整): select floor(5.534) from dual; select trunc(5.534) from dual; 上面两种用法都可以对数字5.534向下取整,结果为5. 如果要向上取整 ,得到结果为6,则应该用ceil select ceil(5.534) from... 阅读全文
摘要:
foreach (RepeaterItem Item in rpt_Result.Items) { LinkButton edit = (LinkButton)Item.FindControl("lbtnEdit"); LinkButton del = (LinkButton)Item.FindCo 阅读全文
摘要:
foreach (RepeaterItem Item in rpt_Result.Items) { LinkButton edit = (LinkButton)Item.FindControl("lbtnEdit"); LinkButton del = (LinkButton)Item.FindCo 阅读全文
摘要:
C#实现导出pdf文件,打印using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using BusinessFacade; using... 阅读全文
摘要:
Oracle中number数据类型对应C#中decimal数据类型,结果是整数 Oracle中number数据类型对应C#中int32数据类型,结果是小数,保留两位小数 Oracle中中date类型数据的截取不能用substr()方法,不然C#中rpt中date数据类型不能设置成规定类型,这里最好用 阅读全文
摘要:
C#中的Math.Round()并不是使用的"四舍五入"法。而是(银行家算法),即:四舍六入五取偶。事实上这也是IEEE的规范,因此所有符合IEEE标准的语言都应该采用这样的算法。 .NET 2.0 开始,Math.Round 方法提供了一个枚举选项 MidpointRounding.AwayFro 阅读全文
摘要:
代码如下: sheet.Range[sheet.Cells[1, 1], sheet.Cells[intDataCount + 1, 13]].WrapText = false; sheet.Range[sheet.Cells[1, 1], sheet.Cells[intDataCount + 1, 阅读全文
摘要:
DateTime dt = new DateTime(); DateTime.TryParse(txtName.text.trim(),out dt); string str1 = dt.ToString("yyyyMM"); 阅读全文
摘要:
在做项目中,通常checkboxlist中的checkitems不是固定的,需要绑定可变的数据源,把数据添加到list集合中,代码如下 注意:checkboxlist也可以绑定datatable数据源,但是在后面的操作中,我们会用到checkboxlistName.SelectedValueArra 阅读全文
摘要:
lambda表达式和可遍历的datatable结合使用,把表中某一列中的数据转成字符串,用“|”隔开,代码如下: lambda表达式和可遍历的list<string>结合使用,把list转成字符串,用“|”隔开,有两种方法,代码如下: 阅读全文