摘要: AntV <script src="x6.js"></script> <script> const Graph = X6.Graph; const Shape = X6.Shape; const Addon = X6.Addon; </script> 阅读全文
posted @ 2024-07-16 17:45 vvull 阅读(2) 评论(0) 推荐(0) 编辑
摘要: element.style { width: 100%; min-width: 1000px; } 阅读全文
posted @ 2024-06-08 14:28 vvull 阅读(3) 评论(0) 推荐(0) 编辑
摘要: A work-around for -webkit-text-security property. type="text", autocomplete="off" <input type="text" name="password" style="text-security:disc; -webki 阅读全文
posted @ 2024-05-31 11:19 vvull 阅读(6) 评论(0) 推荐(0) 编辑
摘要: SQL Server用户权限查询 阅读全文
posted @ 2024-03-01 14:11 vvull 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 使用 .NET 的 IHttpClientFactory 阅读全文
posted @ 2024-02-29 11:37 vvull 阅读(20) 评论(0) 推荐(0) 编辑
摘要: c#转义URL中的参数 var msg = Uri.EscapeDataString("<xx/> asd"); var redirectURL = $"{SignInURL}" + $"?AESKey={Uri.EscapeDataString(encryptAESKey)}" + $"&VVRe 阅读全文
posted @ 2024-02-23 17:52 vvull 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 禁用Win10自动更新——改域名 第一步:打开【组策略】 第二步:定位到 第三步:改为【已启用】 第四步:将服务器地址全部设为【127.0.0.1】 (这是你的本地IP地址,这可以让windows无法找到正确的更新服务器地址,从而阻止更新) 第五步:【确定】,重启电脑 ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰ 阅读全文
posted @ 2024-02-05 22:56 vvull 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 对任意文件右键创建快捷方式 打开%AppData%\Microsoft\Windows\Start Menu\Programs,把快捷方式放到这里 在开始菜单的列表(所有应用)中找到它,然后右键固定到开始屏幕 效果 阅读全文
posted @ 2024-01-31 02:36 vvull 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Connection Timeout 应用连接数据库服务器的超时时间 (默认15秒) <add name="DBVv" connectionString="Data Source=.;Initial Catalog=Vv;Integrated Security=True;Connect Timeou 阅读全文
posted @ 2024-01-26 10:28 vvull 阅读(33) 评论(0) 推荐(0) 编辑
摘要: .NET 7(C#)配置使用log4net日志框架的方法 新建LogHelper帮助类 using log4net; namespace WebTestDemo.Helper { public class LogHelper() { private readonly ILog _logger = L 阅读全文
posted @ 2024-01-16 14:51 vvull 阅读(680) 评论(0) 推荐(0) 编辑