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