12 2023 档案
摘要:问题:数据库显示正在还原下,无法访问数据库 解决方法: 执行查询 restore database 数据库名称 with recovery 后正常 问题原因:事务未回滚,需要手动回滚事务
阅读全文
摘要:定时上传 需求:凌晨一点开始执行上传功能 private void FormTimer_Load(object sender, EventArgs e) { string msg = $"开始执行:{DateTime.Now.ToString()}"; SysLog.SetSystemLog(msg
阅读全文
摘要:原文链接: c# HttpClient和HttpWebRequest添加Basic类型的Authentication认证 需求:webApi 对接 使用 Basic类型的Authentication认证 1 string serviceUrl = saleURL; 2 string Username
阅读全文