摘要:
利用IPAddressRange包实现IP过滤 1、安装nuget上的 IPAddressRange 包 2、继承ActionFilterAttribute using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; 阅读全文
'GBK' is not a supported encoding name. For information on defining a custom encoding, see the docum
摘要:
.net core web工程 使用“GBK” 报如下错 'GBK' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Enco 阅读全文
摘要:
一、手工操作 1、在管理工具里打开Internet 信息服务(IIS)管理器。然后选择需要配置的网站。 2、右侧的界面中会显示该网站的所有功能配置,我们选择并点击进入“MIME类型”。 3、在左侧的操作区选择点击“添加”MIME。 4、在弹出的添加窗口里的文件扩展名输入:apk,在MIME类型输入: 阅读全文
摘要:
一、服务器端开发, public class SocketServer { static void Main() { try { FleckLog.Level = LogLevel.Debug; var allSockets = new List<IWebSocketConnection>(); / 阅读全文
摘要:
一、新建一个文件:appsettings.json 二、很重要。将appsettings.json,变成可复制。第三步公共文件会报错。 三、增加公共文件 public class Appsettings { static IConfiguration Configuration { get; set 阅读全文
摘要:
postman 特殊字符被转义,如 参数+号变成了空格 解决: 如下图:将参数放到form-data或x-www-form-uriencoded 这样参数就不会拼接到url中了,也就不会转义特殊字符了。 2、postman 自己建一个接受信息的接口: 如下图: 然后对方调用接口就为 http://电 阅读全文
摘要:
一、移动文件夹内容,含子文件 参照:http://www.ayjs.net/post/300.html /// <summary> /// 移动文件夹内容 /// </summary> /// <param name="source">源</param> /// <param name="targe 阅读全文
摘要:
/// <summary> /// Get请求 /// </summary> /// <param name="url">webapi地址</param> /// <param name="accessToken">accessToken</param> /// <returns></returns 阅读全文
摘要:
一、500 错误 ,报 Castle.Proxies.xxxProxy 1、基本是实例化问题,可能是没有创建服务、构造函数注入、setup注入错误。 阅读全文
摘要:
aes 加密,生成公私钥有比较麻烦,可以通过支付宝提供的网站生成。https://miniu.alipay.com/keytool/create。 AES 加解密两种写法: /// <summary> /// AES 加密 /// </summary> /// <param name="text"> 阅读全文