新文章 网摘 文章 随笔 日记

摘要: 这里有两个样本: 没有OWIN中间件:https : //github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Clients 带有OWIN的WebForms:https ://github.com/Identity 阅读全文
posted @ 2020-07-23 16:51 岭南春 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 在服务端的Clients中加入 RedirectUris = new List<string>() { "http://localhost:49795/" } 例如: new Client { Enabled = true, ClientName = "SSO", ClientId = 阅读全文
posted @ 2020-06-12 11:01 岭南春 阅读(1377) 评论(1) 推荐(0) 编辑
摘要: IdentityServer3 provides many extensibility points for storage of data, validation logic and general functionality that are needed to support Identity 阅读全文
posted @ 2020-05-29 13:24 岭南春 阅读(218) 评论(0) 推荐(0) 编辑
摘要: MagicOnion //用于微服务(在Orleans,ServiceFabric,AMBROSIA等.NET Core服务器之间进行通信) Wireshark//抓包工具 Npcap//抓local包工具 DotNettyRPC//基于DotNetty的跨平台RPC框架,支持.NET45以及.NE 阅读全文
posted @ 2020-01-09 08:53 岭南春 阅读(287) 评论(0) 推荐(0) 编辑
摘要: //设置Telerik Grid自动列宽 if (typeof JSCommon.autoFitTelerikGridColumns != 'function') { JSCommon.prototype.autoFitTelerikGridColumns = function autoFitCol 阅读全文
posted @ 2019-12-20 12:03 岭南春 阅读(424) 评论(0) 推荐(0) 编辑
摘要: http://tts.baidu.com/text2audio?cuid=baiduid&lan=zh&ctp=1&pdt=311&tex=需要转换的文字 来源:https://www.liufw.com/296.html 阅读全文
posted @ 2019-12-13 20:29 岭南春 阅读(3243) 评论(0) 推荐(0) 编辑
摘要: .Columns(column => { column.Bound(x => x.ReportTime).Format("{0:yyyy/MM/dd}"); } 阅读全文
posted @ 2019-12-10 15:58 岭南春 阅读(219) 评论(0) 推荐(0) 编辑
摘要: public class PageView<T> { private ColumnTitle[] _columnTitles; public int RecordCount { get; } public IList<T> Items { get; } public int PageIndex { 阅读全文
posted @ 2019-12-04 11:07 岭南春 阅读(213) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Linq.Expressions;namespace Phoenix.Modules.Common.Infrastructure.TypeExtensions.LinqExtension{ public static class Expressio 阅读全文
posted @ 2019-12-04 10:04 岭南春 阅读(204) 评论(0) 推荐(0) 编辑
摘要: jQuery.extend(jQuery.validator.messages, { required: "此项必填。", remote: "请修正此项。", email: "请输入一个合法的电子邮件地址。", url: "请输入合法网址。", date: "请输入合法日期。", dateISO: 阅读全文
posted @ 2019-12-03 14:29 岭南春 阅读(236) 评论(0) 推荐(0) 编辑