03 2021 档案

摘要:System.Security.Cryptography.RSACryptoServiceProvider cryptoServiceProvider = new System.Security.Cryptography.RSACryptoServiceProvider(4096); Console 阅读全文
posted @ 2021-03-31 14:42 devs 阅读(403) 评论(0) 推荐(0) 编辑
摘要:System.Exception: Script execution exception: System.IO.FileNotFoundException: 未能加载文件或程序集“Microsoft.SqlServer.Smo, Version=10.0.0.0, Culture=neutral, 阅读全文
posted @ 2021-03-27 17:26 devs 阅读(676) 评论(0) 推荐(0) 编辑
摘要:匹配URL https://[^\s]* 匹配htm开头以及xx结尾 htm.*"> 正则表达式 (UltraEdit Syntax): % 匹配行首 - 表明要搜索的字符串一定在行首. $ 匹配行尾 - 表明要搜索的字符串一定在行尾 ? 匹配除换行符外的任一单个字符. * 匹配任意个数的字符出现任 阅读全文
posted @ 2021-03-24 12:01 devs 阅读(439) 评论(0) 推荐(0) 编辑
摘要:bootstrap https://github.com/twbs/bootstrap jquery https://github.com/jquery/jquery popper.js https://github.com/popperjs/popper-core 阅读全文
posted @ 2021-03-20 16:42 devs 阅读(76) 评论(0) 推荐(0) 编辑
摘要:XAMPP多站点配置 增加Listen xampp\apache\conf\httpd.conf Listen 80 Listen 90 Listen 91 新增vHosts xampp\apache\conf\extra\httpd-vhosts.conf <VirtualHost *:90> # 阅读全文
posted @ 2021-03-17 17:33 devs 阅读(86) 评论(0) 推荐(0) 编辑
摘要:How do I move Kerio MailServer from one machine to another (or change Operating Systems)? SolutionNote: This article also covers how to change operati 阅读全文
posted @ 2021-03-17 10:22 devs 阅读(310) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace Automatic_Mouse_Click { internal static class En 阅读全文
posted @ 2021-03-15 11:57 devs 阅读(354) 评论(0) 推荐(0) 编辑
摘要:服务端 新建ASP.NET Core Web MVC 项目 SSOServer 2. NuGet安装IdentityServer4 3. 新建Config.cs类 public class Config { // scopes define the resources in your system 阅读全文
posted @ 2021-03-12 18:49 devs 阅读(382) 评论(0) 推荐(0) 编辑
摘要:案例 通过Aspose.Html.Converters.Converter.ConvertMarkdown将markdown转换为html 出现中文乱码的情况 解决办法 可以在转换之前,将内存流中的字符串改为UTF-8即可. Stream stream = new MemoryStream(Enco 阅读全文
posted @ 2021-03-10 12:09 devs 阅读(500) 评论(0) 推荐(0) 编辑