[转][C#]Linq 的扩展方法
摘要:public static class LinqEx { public static IEnumerable LeftExcludingJoin(this IEnumerable source, IEnumerable inner, ...
阅读全文
posted @
2018-12-30 16:28
z5337
阅读(797)
推荐(1) 编辑
[转]Oracle left join \ right join
摘要:select 1 from a,b where a.id=b.id(+) 等同于 a left join b on a.id=b.id select 1 from a,b where a.id(+)=b.id 等同于 a right join b on a.id=b.id 在 MS SQL 中,写作
阅读全文
posted @
2018-12-29 11:41
z5337
阅读(168)
推荐(0) 编辑
[转]检测到有潜在危险的 Request.Form 值
摘要:如果要允许前台传入 html 标记,可以在 WebConfig 中加入这个。 参考:https://www.cnblogs.com/youring2/p/3559781.html 参考:https://www.cnblogs.com/sandunban/p/5200434.html
阅读全文
posted @
2018-12-26 14:56
z5337
阅读(170)
推荐(0) 编辑
IIS 添加 MIME
摘要:参考:https://blog.brain1981.com/727.html 在项目的 Web.Config 里下添加如下段落即可: 或者手动在下图位置添加:
阅读全文
posted @
2018-12-25 17:16
z5337
阅读(372)
推荐(0) 编辑
[转][Echarts]俄罗斯方块
摘要:来自:http://gallery.echartsjs.com/editor.html?c=xrkJZ2pfeZ
阅读全文
posted @
2018-12-10 18:13
z5337
阅读(296)
推荐(0) 编辑