11 2018 档案

摘要:控制器 PagedResult 阅读全文
posted @ 2018-11-30 10:57 这座城市那么空 阅读(932) 评论(0) 推荐(0)
摘要:发送邮件帮助类 调用方法 阅读全文
posted @ 2018-11-30 10:53 这座城市那么空 阅读(184) 评论(0) 推荐(0)
摘要:原因:版本不一致,所使用的dll和配置文件中的版本不一致。解决: (1)查看所使用的Newtonsoft.Json.dll版本 ,然后把对应的版本修改在配置文件中如下,比如版本为“4.5.0.0” 修改成对应版本即可。 <dependentAssembly> <assemblyIdentity na 阅读全文
posted @ 2018-11-30 10:25 这座城市那么空 阅读(2530) 评论(0) 推荐(0)
摘要:using System.Web; namespace Wxlhjcyy.Public { public class GetIp { public static string IPAddress { get { string userIP; ... 阅读全文
posted @ 2018-11-27 11:06 这座城市那么空 阅读(1868) 评论(0) 推荐(0)
摘要:select * from tablename where id in (select id from tablename group by id having count(id) > 1) 阅读全文
posted @ 2018-11-20 08:59 这座城市那么空 阅读(1629) 评论(0) 推荐(1)
摘要:oracle的start with connect by prior是根据条件递归查询"树",分为四种使用情况: 第一种:start with 子节点ID='...' connect by prior 子节点ID = 父节点ID 1 select * from mdm_organization o 阅读全文
posted @ 2018-11-05 16:47 这座城市那么空 阅读(219) 评论(0) 推荐(0)