摘要:
https://www.haorooms.com/post/css_div_juzhong https://www.cnblogs.com/zhangwenjiajessy/p/6130658.html 阅读全文
摘要:
fetch.js 调用方式: https://blog.csdn.net/qq_40190624/article/details/82873640 https://developer.mozilla.org/zh CN/docs/Web/API/Fetch_API/Using_Fetch 阅读全文
摘要:
```
/** * 获取当前完整URL * @return string */
function get_url()
{ $sys_protocal = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://'; //根据当前端口,判断是http还是https... 阅读全文
摘要:
参考: https://www.cnblogs.com/aiqingqing/p/5041526.html https://blog.csdn.net/qq_43560721/article/details/83691370 https://www.suibianlu.com/13972.html 阅读全文
摘要:
https://www.cnblogs.com/lzrabbit/archive/2012/03/23/2413180.html https://blog.csdn.net/guyswj/article/details/81940188 一、引用log4net 二、在AssemblyInfo.cs中 阅读全文
摘要:
``` /// /// 1. 校验正整数(包含0) /// public static bool isInterger(string str) { return string.IsNullOrWhiteSpace(str) ? false:Regex.IsMatch(str, @"^[1-9]\d*|0$"); } /// /// 2. 校验非零正整数 /// public s... 阅读全文
摘要:
NewtonSoft.Json NULL转空字符串 http://www.cnblogs.com/hetuan/articles/4565702.html 阅读全文
摘要:
https://blog.csdn.net/xiaouncle/article/details/52891563 https://www.cnblogs.com/knowledgesea/p/3714417.html https://blog.csdn.net/WuLex/article/detai 阅读全文
摘要:
待总结 1. https://blog.csdn.net/JavaCoder_juejue/article/details/82313891 2. https://blog.csdn.net/a772304419/article/details/79669614 插入前,判断存不存在 3. http 阅读全文
摘要:
Web.config对大小写敏感, 把AppSettings改为appSettings即可。 阅读全文
摘要:
https://blog.csdn.net/luckyrass/article/details/38758007 一、前台直接输出后台传递的数据 后台代码: 前台代码: 也可以直接在js里获取 二、 前台传参,后台获取参数并返回值,前台可直接调用方法必须是静态方法 后台代码: 前台代码: 三、新建一 阅读全文
摘要:
http://www.tigerbook.cn/article 124.html https://www.cnblogs.com/zonglonglong/p/4894929.html 阅读全文
该文被密码保护。 阅读全文
摘要:
一、空值判断效率 string s = ""; 1. if(s == ""){} 2. if(s == string.Empty){} 3. if (string.IsNullOrEmpty(s)) {} 4. if(s != null && s.Length ==0) {} 5. if((s+"" 阅读全文
摘要:
```
System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();
watch.Start(); //开始监视代码运行时间
// 需要监控的代码 watch.Stop(); //停止监视
TimeSpan timeSpan = watch.Elapsed; //获取当前实例测量得出的总时间
Conso... 阅读全文
该文被密码保护。 阅读全文
摘要:
1. int适合简单数据类型之间的转换,C 的默认整型是int32(不支持bool型); 2. int.Parse(string sParameter)是个构造函数,参数类型只支持string类型; 3. Convert.ToInt32()适合将Object类型转换为int型; 4. Convert 阅读全文
摘要:
https://www.cnblogs.com/jqg aliang/p/5234206.html 打印日志的函数 开发中输出日志必不可少,在C 中输出多个不同类型参数的时候,需要连接符累加输出,很是不方便。 一个简单的方法是自己封装一个打印的函数,让它支持不定参数和不同类型的输出。这样就不会强用字 阅读全文