上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 78 下一页
摘要: 本文来自 天水宇 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/xxs77ch/article/details/50553857?utm_source=copy using System; using System.Collections.Generic; usin 阅读全文
posted @ 2018-09-29 08:37 qqhfeng16 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1.首先进行XWPFDocument类的实例化,该类的实例对应一个word文档 XWPFDocument MyDoc = new XWPFDocument(); 2.设置页面的大小 CT_SectPr m_SectPr = new CT_SectPr(); //实例一个尺寸类的实例 m_SectPr 阅读全文
posted @ 2018-09-13 17:02 qqhfeng16 阅读(350) 评论(0) 推荐(0) 编辑
摘要: using NPOI.XWPF.UserModel XWPFDocument doc = new XWPFDocument(); //创建新的word文档 XWPFParagraph p1 = doc.CreateParagraph(); //向新文档中添加段落 p1.SetAlignment(Pa 阅读全文
posted @ 2018-09-13 17:00 qqhfeng16 阅读(534) 评论(0) 推荐(0) 编辑
摘要: ASPxCallback主要是通过注册客户端事件与服务器端事件来相互通信完成任务。ASPxCallback控件为我们封装了大量的Ajax操作,使用起来非常的方便,如果页面中遇到需要局部刷的操作而又不想自动动手写ajax的话,使用它就是非常不错选择。 客户端向服务端发信息 例如c1.PerformCa 阅读全文
posted @ 2018-08-30 22:07 qqhfeng16 阅读(228) 评论(0) 推荐(0) 编辑
摘要: tring.Format 方法的几种定义: String.Format (String, Object) 将指定的 String 中的格式项替换为指定的 Object 实例的值的文本等效项。String.Format (String, Object[]) 将指定 String 中的格式项替换为指定数 阅读全文
posted @ 2018-08-27 23:18 qqhfeng16 阅读(19345) 评论(0) 推荐(1) 编辑
摘要: protected void ASPxGridView1_HtmlDataCellPrepared(object sender, ASPxGridViewTableDataCellEventArgs e){string tJhso = e.GetValue("PLAN_SO").ToString() 阅读全文
posted @ 2018-08-26 23:07 qqhfeng16 阅读(217) 评论(0) 推荐(0) 编辑
摘要: select convert(numeric(8,2),round(UnTaxAmount,2))as UnTaxAmount from View_SaleVoiceselect cast(UnTaxAmount as decimal(20,2)) as UnTaxAmount from View_ 阅读全文
posted @ 2018-08-26 22:10 qqhfeng16 阅读(212) 评论(0) 推荐(0) 编辑
摘要: void Application_Start(object sender, EventArgs e) { // 在应用程序启动时运行的代码 Application.Lock(); if (Application["visitor_counter"] == null) { ... 阅读全文
posted @ 2018-08-19 21:07 qqhfeng16 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 在MS Sql Server中可以能过以下的方法查询出磁盘空间的使用情况及各数据库数据文件及日志文件的大小及使用利用率: 1、查询各个磁盘分区的剩余空间:Exec master.dbo.xp_fixeddrives 2、查询数据库的数据文件及日志文件的相关信息(包括文件组、当前文件大小、文件最大值、 阅读全文
posted @ 2018-08-11 15:02 qqhfeng16 阅读(830) 评论(0) 推荐(0) 编辑
摘要: <script src="../Scripts/jquery-1.4.1.js" type="text/javascript" ></script> <script src="../Scripts/jquery-1.4.1.min.js" type="text/javascript" ></scri 阅读全文
posted @ 2018-08-09 10:28 qqhfeng16 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 78 下一页