上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页
摘要: https://www.cnblogs.com/basterdaidai/p/6679849.html ASP.NET MVC里ModelState.IsValid总是true或者总是falsemodel的属性如果不加验证相关的特性,ModelState.IsValid会永远为true;如果加了验证 阅读全文
posted @ 2021-06-13 09:11 .net&new 阅读(46) 评论(0) 推荐(0) 编辑
摘要: .net core 使用ClaimsIdentity实现登录授权一、新建用户 1、先新建一个用户表,用户存储用户信息。 复制代码 public class UserInfo { public const string Salt = "cesi"; [Key] [DatabaseGenerated(D 阅读全文
posted @ 2021-06-12 16:00 .net&new 阅读(493) 评论(0) 推荐(0) 编辑
摘要: Redis 缓存穿透 + 缓存雪崩 + 缓存击穿的原因和解决方案 目录 一、缓存穿透 解决方案: 二、缓存雪崩 解决方案: 三、缓存击穿 解决方案: 在生产环境中,会因为很多的原因造成访问请求绕过了缓存,都需要访问数据库持久层,虽然对Redsi缓存服务器不会造成影响,但是数据库的负载就会增大,使缓存 阅读全文
posted @ 2021-05-31 20:13 .net&new 阅读(115) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { //Console.WriteLine("Hello World!"); //ShowInt(10); //ShowString("test"); //ShowDateTime(DateTime.Now); //ShowObject 阅读全文
posted @ 2021-05-10 20:38 .net&new 阅读(52) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Microsoft.AspNetCore.Http;using M 阅读全文
posted @ 2021-05-10 20:37 .net&new 阅读(541) 评论(0) 推荐(0) 编辑
摘要: //定义动态对象转换JSON字符串dynamic car = new{ Name = "Audi A8L", Model= " www.cscode.net:C/S框架网"}; string jsonData= JsonConvert.SerializeObject(car); //JSON: {" 阅读全文
posted @ 2021-05-06 22:59 .net&new 阅读(1764) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyGeneric { public class 阅读全文
posted @ 2021-05-06 22:54 .net&new 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 使用微软的DSOFRAMER控件实现方法:先下载DsoFramer_KB311765_x86.exe ,自己百度一下有很多。安装,默认安装目录C:\DsoFramer可以先注册下: 开始菜单 运行 输入 regsvr32.exe C:\DsoFramer\dsoframer.ocx using Sy 阅读全文
posted @ 2021-04-27 19:40 .net&new 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-03-06 17:32 .net&new 阅读(495) 评论(0) 推荐(0) 编辑
摘要: //睡眠时间-add/2021/3/2 case "sleep": //1判断是天睡眠还是时间区间睡眠 //2:睡眠开始>睡眠结束{开始=时间-1天,结束=今天},睡眠开始<睡眠结束{开始=时间,结束=今天} //3:0~5翻滚次数=深度睡眠,5~10次翻滚次数=浅度睡眠,>10=清醒; //4:合 阅读全文
posted @ 2021-03-06 17:31 .net&new 阅读(368) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页