上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 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 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 匹配URL https://[^\s]* 匹配htm开头以及xx结尾 htm.*"> 正则表达式 (UltraEdit Syntax): % 匹配行首 - 表明要搜索的字符串一定在行首. $ 匹配行尾 - 表明要搜索的字符串一定在行尾 ? 匹配除换行符外的任一单个字符. * 匹配任意个数的字符出现任 阅读全文
posted @ 2021-03-24 12:01 devs 阅读(378) 评论(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 阅读(66) 评论(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 阅读(81) 评论(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 阅读(282) 评论(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 阅读(344) 评论(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 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 案例 通过Aspose.Html.Converters.Converter.ConvertMarkdown将markdown转换为html 出现中文乱码的情况 解决办法 可以在转换之前,将内存流中的字符串改为UTF-8即可. Stream stream = new MemoryStream(Enco 阅读全文
posted @ 2021-03-10 12:09 devs 阅读(465) 评论(0) 推荐(0) 编辑
摘要: private void Main() { if (File.Exists(_svgFile)) { SetSvgSize(_svgFile, spnWidth.Value, spnHeight.Value); } } private void SetSvgSize(string file,deci 阅读全文
posted @ 2021-02-28 23:31 devs 阅读(382) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text.RegularExpressions; public partial class RegexEx { /// <summary> /// 验证输入字符串是否与模式字符串匹配,匹配返回true /// </summary> /// <pa 阅读全文
posted @ 2021-02-28 23:24 devs 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页