邮件帮助类
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Mail; using System.Text; using System.Threading; using System.Threading.Tasks; namespace LogTest...
阅读全文
posted @
2019-06-18 16:52
红磨坊后的白桦树
阅读(295)
推荐(0)
IISHelper操作iis
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; using System.ServiceProcess; namespace Util { public...
阅读全文
posted @
2019-06-18 16:45
红磨坊后的白桦树
阅读(156)
推荐(0)
删除数组中的重复项
摘要:/// /// 删除数组中的重复项 /// /// /// public static string[] RemoveDup(string[] values) { List list = new List(); for (int i = 0; i...
阅读全文
posted @
2019-06-18 16:41
红磨坊后的白桦树
阅读(148)
推荐(0)
SQL 、LINQ日前比较
摘要:一、建立一个数据库帮助类 DbHelper 二、建立一个数据库类型类 DatabaseType 三、日期处理类 DbTimeType 四、Json操作类 Json 五、类型转换扩展类 Extensions
阅读全文
posted @
2019-06-18 11:53
红磨坊后的白桦树
阅读(326)
推荐(0)
PostAsync与GetAsync
摘要:using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.N
阅读全文
posted @
2019-06-18 10:58
红磨坊后的白桦树
阅读(5562)
推荐(0)
Redis
摘要:测试代码下载 提取码:ec91 https://www.cnblogs.com/hnsongbiao/p/5102795.html?from=androidqq redis通过key模糊查询
阅读全文
posted @
2019-06-06 16:06
红磨坊后的白桦树
阅读(106)
推荐(0)
记录一次ajax使用
摘要:function getSSOUrl(urlvalue) { var urls; $.ajax({ type: "GET", url: "../../GeoManage/TBL__PROJECTINFO/GetUrl?urlvalue=" + urlvalue, success: function (data) { urls = data; } }) return urls; } 这样写s...
阅读全文
posted @
2019-06-05 14:45
红磨坊后的白桦树
阅读(80)
推荐(0)
oracle11g导出dmp文件时不能导出空表,导致缺表
摘要:一、执行 select 'analyze table '||table_name||' compute statistics;' from user_tables; 将该查询语句查询到的结果粘贴到sql里面在plsql里面执行一遍(将该sql语句查询出的结果都执行一遍,目的为了查询空表) 二、执行
阅读全文
posted @
2019-06-03 09:57
红磨坊后的白桦树
阅读(402)
推荐(0)