摘要:
官网:http://kindeditor.net/docs/usage.html 目前支持ASP、ASP.NET、PHP、JSP。 阅读全文
摘要:
原文:https://www.cnblogs.com/Scholars/p/9162598.html 阅读全文
摘要:
参考:https://www.cnblogs.com/Scholars/p/8968838.html 下载:http://www.wangeditor.com/ 前端代码: <script type="text/javascript"> //下面这两行脚本就是弹出文本框 var E = window 阅读全文
摘要:
日期格式化 Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06 Select CONVERT(varchar(100), 阅读全文
摘要:
一。日期格式化 1.ToString() d 月中的某一天。一位数的日期没有前导零。 dd 月中的某一天。一位数的日期有一个前导零。 ddd 周中某天的缩写名称,在 AbbreviatedDayNames 中定义。 dddd 周中某天的完整名称,在 DayNames 中定义。 M 月份数字。一位数的 阅读全文
摘要:
下载:NuGet程序包 添加到记事本中 其他方式: 创建帮助类用来调用: 参考:https://www.cnblogs.com/vichin/p/6022612.html https://www.cnblogs.com/vichin/p/6022612.html 阅读全文
摘要:
参考:https://www.cnblogs.com/hehehehehe/p/6043710.html https://www.cnblogs.com/miro/p/5006520.html 引子 为方便说明,先举个例子,列出Lambda表达式的一个典型形式: x=>x+1 大家可以看到,Lamb 阅读全文
摘要:
using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace ClassLibrary1 { class Code { //1、base64 to string publ 阅读全文
摘要:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Reflection; using Syst 阅读全文
摘要:
string str = "ABCD"; char[] strCharArr = str.ToCharArray(); //结果 //strCharArr[0]='A', //strCharArr[1]='B', //strCharArr[2]='C', //strCharArr[3]='D' st 阅读全文