随笔分类 -  .Net Core

摘要:/// <summary> /// 使用示例 /// </summary> public static void HtmlRemove() { string requestBody = "<html><head><title>Test</title></head><body><a lay-her=' 阅读全文
posted @ 2024-05-16 16:12 LuoCore 阅读(130) 评论(0) 推荐(0) 编辑
摘要:参考文章地址:为什么要在 ASP.NET Core 中使用视图组件 (telerik.com)为什么使用视图组件而不是分部视图?最大的原因是,在 Razor 页面中插入分部视图时,与调用 View 关联的所有 ViewData 都会自动与分部视图关联。这意味着分部视图在一个 Razor 页面上的行为 阅读全文
posted @ 2024-05-06 11:31 LuoCore 阅读(270) 评论(0) 推荐(1) 编辑
摘要:C#使用HttpClient下载图片并转换为Bitmap,忽略无效HTTPS证书问题 (qq.com) 阅读全文
posted @ 2023-11-02 17:24 LuoCore 阅读(80) 评论(0) 推荐(0) 编辑
摘要:C# .NET Core 以 Big 5 (大五碼)編碼格式讀取檔案 (ruyut.com) C# .NET Core 以 Big 5 (大五碼)編碼格式讀取檔案 日期: 4月 27, 2022 之前在寫 C# .NET Framework 的時候要使用其他編碼格式很簡單,寫上編碼格式就可以了,但今 阅读全文
posted @ 2023-04-14 17:44 LuoCore 阅读(210) 评论(0) 推荐(0) 编辑
摘要:下载并安装erlang原因:RabbitMQ服务端代码是使用并发式语言Erlang编写的,安装Rabbit MQ的前提是安装Erlang。下载地址:http://www.erlang.org/downloads提示:安装之前务必查看Erlang和RabbitMQ的版本是否对应,否则会导致安装失败或者 阅读全文
posted @ 2023-03-09 11:02 LuoCore 阅读(718) 评论(0) 推荐(0) 编辑
摘要:https://www.skyfinder.cc/2021/12/17/net-core-register-encoding/#:~:text=%E5%9C%A8%E4%BD%BF%E7%94%A8.net%205%20%E6%9E%84%E5%BB%BA%E5%BA%94%E7%94%A8%E6% 阅读全文
posted @ 2022-10-10 15:51 LuoCore 阅读(626) 评论(0) 推荐(0) 编辑
摘要:public static string PostFromQueryToString(string url, string reqData) { string strUrl = new UriBuilder(url) { Query = reqData }.ToString(); if (strUr 阅读全文
posted @ 2022-06-18 12:12 LuoCore 阅读(2014) 评论(0) 推荐(0) 编辑
摘要:转载于:https://juejin.im/post/5cdab497e51d453adf1fa729 转载于:https://blog.csdn.net/weixin_34129145/article/details/91441753 Net Core中Get请求接口的参数一般可以在url中获取, 阅读全文
posted @ 2022-05-22 11:37 LuoCore 阅读(2004) 评论(0) 推荐(0) 编辑
摘要:public static void AddCorsSetup(this IServiceCollection services) { services.AddCors(c => { //允许任意跨域请求 c.AddDefaultPolicy(policy => { policy .SetIsOri 阅读全文
posted @ 2022-05-22 11:06 LuoCore 阅读(169) 评论(0) 推荐(0) 编辑
摘要:同时感谢 https://www.programminghunter.com/article/23551893646/ 网站记录了信息,不然这么好的文章代码就要消失了, 同时自己备份一下 原来:https://www.cnblogs.com/oneprice/archive/2018/11/07/9 阅读全文
posted @ 2022-04-09 18:25 LuoCore 阅读(132) 评论(0) 推荐(0) 编辑
摘要:通过添加 Microsoft.AspNetCore.Hosting.Abstractions.dll 包是没有效果的 需要添加的包叫做:MiniProfiler.AspNetCore.Mvc 阅读全文
posted @ 2022-04-09 11:03 LuoCore 阅读(746) 评论(2) 推荐(1) 编辑
摘要:上传进度: var 每次成功增加的进度 = Convert.ToDouble(文件已上传大小) / Convert.ToDouble(文件总大小); var 当前进度 = (每次成功增加的进度 *100.00); 下载进度: var 每次成功增加的进度 = Convert.ToDouble(文件已下 阅读全文
posted @ 2022-01-11 17:28 LuoCore 阅读(51) 评论(0) 推荐(0) 编辑
摘要:https://blog.wixy.cn/archives/10.html <PropertyGroup> <TargetFramework>net6.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</Im 阅读全文
posted @ 2021-11-23 15:05 LuoCore 阅读(549) 评论(0) 推荐(0) 编辑
摘要://// 配置 xml 文档 //var BaseDirectory = AppContext.BaseDirectory; //var xmlFileLoacl = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"; //var xml 阅读全文
posted @ 2021-09-24 18:07 LuoCore 阅读(300) 评论(0) 推荐(1) 编辑
摘要:https://www.cnblogs.com/xhubobo/p/14445511.html 使用过程参考:在ASP.Net Core Web API中使用Swagger,本文在此基础上阐述如何进行API文档的版本控制。 1、添加API枚举类型 public enum ApiVersion { / 阅读全文
posted @ 2021-09-23 17:41 LuoCore 阅读(343) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_44352179/article/details/106633989 在做.NET CORE WEBAPI接口案例的时候碰到了前端页面ajax post请求接口时,api接收到的数据为NULL。在core里面FromBody对应的是appli 阅读全文
posted @ 2021-08-03 15:10 LuoCore 阅读(528) 评论(0) 推荐(2) 编辑
摘要:感谢:https://blog.csdn.net/duyunzhi/article/details/89215917 提供思路 感谢:https://q.cnblogs.com/q/111311 提问,提供解决方案 用原生的 Attribute 是达不到效果必须重写 public class Log 阅读全文
posted @ 2021-06-16 14:43 LuoCore 阅读(437) 评论(3) 推荐(0) 编辑
摘要:An unhandled exception occurred while processing the request. InvalidOperationException: No authenticationScheme was specified, and there was no Defau 阅读全文
posted @ 2021-05-19 13:45 LuoCore 阅读(1069) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_30566111/article/details/99483605 var html = "<select id=\"formBasicEmail\" class=\"form - control\"><option>73: Australi 阅读全文
posted @ 2021-05-18 15:03 LuoCore 阅读(230) 评论(0) 推荐(0) 编辑
摘要:Type enumType = typeof(Domain.Models.Entitys.PermissionEntity.PermissionTypeEnum); Array values = Enum.GetValues(enumType); if (values.Length > 0) { f 阅读全文
posted @ 2021-05-12 10:07 LuoCore 阅读(433) 评论(0) 推荐(0) 编辑