摘要: 参考:https://www.cnblogs.com/Scholars/p/8968838.html 下载:http://www.wangeditor.com/ 前端代码: <script type="text/javascript"> //下面这两行脚本就是弹出文本框 var E = window 阅读全文
posted @ 2019-06-28 21:47 Tozhang 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 日期格式化 Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06 Select CONVERT(varchar(100), 阅读全文
posted @ 2019-06-28 21:02 Tozhang 阅读(31256) 评论(0) 推荐(0) 编辑
摘要: 一。日期格式化 1.ToString() d 月中的某一天。一位数的日期没有前导零。 dd 月中的某一天。一位数的日期有一个前导零。 ddd 周中某天的缩写名称,在 AbbreviatedDayNames 中定义。 dddd 周中某天的完整名称,在 DayNames 中定义。 M 月份数字。一位数的 阅读全文
posted @ 2019-06-28 20:56 Tozhang 阅读(30381) 评论(0) 推荐(1) 编辑
摘要: 下载:NuGet程序包 添加到记事本中 其他方式: 创建帮助类用来调用: 参考:https://www.cnblogs.com/vichin/p/6022612.html https://www.cnblogs.com/vichin/p/6022612.html 阅读全文
posted @ 2019-06-28 20:42 Tozhang 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/hehehehehe/p/6043710.html https://www.cnblogs.com/miro/p/5006520.html 引子 为方便说明,先举个例子,列出Lambda表达式的一个典型形式: x=>x+1 大家可以看到,Lamb 阅读全文
posted @ 2019-06-28 20:07 Tozhang 阅读(648) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace ClassLibrary1 { class Code { //1、base64 to string publ 阅读全文
posted @ 2019-06-28 19:47 Tozhang 阅读(1485) 评论(1) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Reflection; using Syst 阅读全文
posted @ 2019-06-28 19:25 Tozhang 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: string str = "ABCD"; char[] strCharArr = str.ToCharArray(); //结果 //strCharArr[0]='A', //strCharArr[1]='B', //strCharArr[2]='C', //strCharArr[3]='D' st 阅读全文
posted @ 2019-06-28 19:11 Tozhang 阅读(30126) 评论(0) 推荐(0) 编辑
摘要: 数据插入 INSERT INTO 表名称 VALUES (值1, 值2,....) 指定所要插入数据的列 INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....) INSERT INTO table_name (列1, 列2,...) sele 阅读全文
posted @ 2019-06-26 21:16 Tozhang 阅读(1434) 评论(0) 推荐(0) 编辑
摘要: Echarts图形是由Javascript亲自在前端网页上绘制的 1.用ECharts配置项手册中的toolbox.feature.saveAsImage toolbox: { show: true, feature: { saveAsImage: { show:true, excludeCompo 阅读全文
posted @ 2019-06-26 20:41 Tozhang 阅读(15829) 评论(1) 推荐(0) 编辑