会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
新生代农民工
博客园
首页
新随笔
联系
订阅
管理
2024年11月1日
Asp.net 使用FluentScheduler
摘要: 1.安装包: Install-Package FluentScheduler 2. Global.asax添加 JobManager.Initialize(new MyRegister()); 3.添加类 public class MyRegister : Registry { public MyR
阅读全文
posted @ 2024-11-01 13:35 RookieBoy666
阅读(4)
评论(0)
推荐(0)
编辑
2024年10月29日
Asp.Net 之HangFire定时任务配置使用
摘要: 1.程序集 Install-Package Hangfire.Core Install-Package Hangfire.SqlServer Install-Package Hangfire.AspNet 2.web.config加配置 <connectionStrings> <add name="
阅读全文
posted @ 2024-10-29 11:06 RookieBoy666
阅读(6)
评论(0)
推荐(0)
编辑
2024年10月16日
SQLSERVER创建连接服务器
摘要: EXEC master.dbo.sp_addlinkedserver @server = N'192.168.2.2', @srvproduct = N'sqlserver', @provider = N'MSDASQL', @provstr = N'DRIVER={SQL Server Nativ
阅读全文
posted @ 2024-10-16 10:01 RookieBoy666
阅读(7)
评论(0)
推荐(0)
编辑
2024年10月11日
sql注入
摘要: //sql注入 SqlInjectHelper myCheck = new SqlInjectHelper(Request); bool result = myCheck.CheckSqlInject(); if (result) { //Response.ContentType = "text/p
阅读全文
posted @ 2024-10-11 17:01 RookieBoy666
阅读(7)
评论(0)
推荐(0)
编辑
2024年9月23日
C# json格式化
摘要: //格式化Json private string ConvertStringToJson(string str) { //格式化json字符串 JsonSerializer serializer = new JsonSerializer(); TextReader tr = new StringRe
阅读全文
posted @ 2024-09-23 21:00 RookieBoy666
阅读(12)
评论(0)
推荐(0)
编辑
2024年9月13日
浏览器显示“摄像头被阻止以保护您的隐私”
摘要: 浏览器输入 Insecure origins treated as secure 改为 Enabled 加入网址 多个逗号分割
阅读全文
posted @ 2024-09-13 15:41 RookieBoy666
阅读(14)
评论(0)
推荐(0)
编辑
2024年9月2日
浏览器所在操作系统与网站部署所在操作系统不一致 不让登录
摘要: public enum OSTypeEnum { Windows, Linux, MacOS, Other } #region 浏览器操作系统与网站部署所在操作系统不一致 不让登录 string userAgent = HttpContext.Current.Request.UserAgent; O
阅读全文
posted @ 2024-09-02 11:30 RookieBoy666
阅读(2)
评论(0)
推荐(0)
编辑
2024年8月20日
工具类
摘要: 获取IP IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName()); var ippaddress = host .AddressList .FirstOrDefault(ip => ip.AddressFamily == AddressFamil
阅读全文
posted @ 2024-08-20 08:43 RookieBoy666
阅读(2)
评论(0)
推荐(0)
编辑
2024年8月8日
NET 升级NET7 记录
摘要: Get 和Post获取传值 Get string strNewPassWord = HttpContext.Request.Query["NewPassWord"]; string strOldPassWord = HttpContext.Request.Query["OldPassWord"];
阅读全文
posted @ 2024-08-08 12:45 RookieBoy666
阅读(4)
评论(0)
推荐(0)
编辑
2024年7月26日
EFCore 8.0.3 DbFirst
摘要: 1.先安装EF相关包 : 2.appsettings.Development.json添加节点 "ConnectionStrings": { "sqlserver": "server=192.168.0.136;Initial Catalog=TY_Version;User ID=sa;Passwo
阅读全文
posted @ 2024-07-26 11:04 RookieBoy666
阅读(3)
评论(0)
推荐(0)
编辑
下一页