摘要: GDI+ 中发生一般性错误 c# Save 阅读全文
posted @ 2021-06-11 16:00 fengwm 阅读(1950) 评论(0) 推荐(0)
摘要: 将数据去重复后暂存到临时表#temptable中 select distinct * into #temptable from table1 where 条件 delete table1 where 删除限制条件 insert into table1 select * from #temptable 阅读全文
posted @ 2021-05-17 18:22 fengwm 阅读(749) 评论(0) 推荐(0)
摘要: web项目中经常使用到定时操作需求,之前用了很多种方式,定时功能始终无法稳定运行,以下采用了windows服务的方式,运行比较稳定的一种方式。 1、windows服务创建 2、开始编写代码 3、程序代码 项目自动包括了服务启动方法和停止方法 程序启动方法 protected override voi 阅读全文
posted @ 2021-03-31 14:57 fengwm 阅读(162) 评论(0) 推荐(0)
摘要: mvc 项目中经常出现跨域调用Action的情况,但会出现如下错误:提示在当前域中未找到Action方法。 按照如下方式进行修改 普通写法: @Html.Action("PartialTopInfo", "Default") 如果是在根目录下area就写空 @Html.Action("Partial 阅读全文
posted @ 2021-01-28 11:48 fengwm 阅读(157) 评论(0) 推荐(0)