会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
byfcumt
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
下一页
2017年12月11日
Windows搭建Log4Net+FileBeat+ELK日志分析系统过程
摘要: 参考博客:http://udn.yyuap.com/thread-54591-1-1.html ; https://www.cnblogs.com/yanbinliu/p/6208626.html ; http://blog.csdn.net/wyqlxy/article/details/52622
阅读全文
posted @ 2017-12-11 15:15 byfcumt
阅读(2001)
评论(0)
推荐(0)
2017年10月12日
知识点总结:Linq和Lambda
摘要: 基本语法: Linq:var result=from t in table order by sort ascending/descending select t; Lambda:var result=table.OrderBy/OrderByDescending(a => a.sort). 1.获
阅读全文
posted @ 2017-10-12 15:27 byfcumt
阅读(248)
评论(0)
推荐(0)
2017年8月4日
查询一天的小时数
摘要: select number from master..spt_values where type='P' and number<24
阅读全文
posted @ 2017-08-04 20:31 byfcumt
阅读(157)
评论(0)
推荐(0)
2017年8月3日
Winform程序在XP系统上双击运行无反应解决方法
摘要: 右键程序,打开属性栏,在兼容性选项里以兼容模式运行该程序即可解决。
阅读全文
posted @ 2017-08-03 14:31 byfcumt
阅读(1139)
评论(0)
推荐(0)
2017年7月5日
IIS部署时failed to execute url 解决方法
摘要: web.config中增加如下节点: <system.webServer> <validation validateIntegratedModeConfiguration="false" /> </system.webServer> 应用程序池托管管道模式改为集成模式。
阅读全文
posted @ 2017-07-05 10:53 byfcumt
阅读(499)
评论(0)
推荐(0)
2017年6月28日
IIS部署时未能加载程序集"System.Web.Http.WebHost"解决方法
摘要: 问题如下 服务器没有安装MVC,下载以下dll覆盖到bin目录下,即可免安装运行程序。 下载地址:https://pan.baidu.com/s/1mhCo5mS
阅读全文
posted @ 2017-06-28 10:00 byfcumt
阅读(681)
评论(0)
推荐(0)
2017年6月21日
Sql保留两位小数方法
摘要: 2.176544保留两位小数 1.select Convert(decimal(18,2),2.176544) 结果:2.18 2.select Round(2.176544,2) 结果:2.180000 由此可见Convert转换效果更加完美!
阅读全文
posted @ 2017-06-21 17:10 byfcumt
阅读(56900)
评论(0)
推荐(0)
进入网页开始计时,关闭页面时触发操作事件
摘要: <html> <head> <title>页面停留时间</title> </head> <body onload="init(); window.setTimeout('show_secs()',1);" > <script language="javascript"> var ap_name =
阅读全文
posted @ 2017-06-21 10:11 byfcumt
阅读(2068)
评论(0)
推荐(0)
2017年6月14日
赋予Winform程序管理员访问权限
摘要: 业务场景:Winform操作系统盘文件夹时进行文件的读写时,会需要管理员权限打开文件。 解决方案: 在项目文件中找到app.manifest文件打开。 替换requestedExecutionLevel节点level为requireAdministrator,重新编译即可。 如何找到app.mani
阅读全文
posted @ 2017-06-14 16:16 byfcumt
阅读(537)
评论(0)
推荐(0)
2017年6月1日
Sql Server统计报表案例
摘要: 场景:查询人员指定年月工作量信息 呈现效果: 分析: 1.行转列 2.查询当前日期所在月份所有日期 3.游标处理数据 4.对动态列临时表进行汇总查询 注意:对于临时表,查询需加前缀 tempdb
阅读全文
posted @ 2017-06-01 16:04 byfcumt
阅读(1873)
评论(0)
推荐(0)
上一页
1
2
3
下一页
公告