摘要: Quartz.NET 入门,带C#实例 概述 Quartz.NET是一个开源的作业调度框架,非常适合在平时的工作中,定时轮询数据库同步,定时邮件通知,定时处理数据等。 Quartz.NET允许开发人员根据时间间隔(或天)来调度作业。它实现了作业和触发器的多对多关系,还能把多个作业与不同的触发器关联。 阅读全文
posted @ 2017-07-23 09:38 fishyue 阅读(227) 评论(1) 推荐(0) 编辑
摘要: $("#check_status").bind('click', function () { if ($("#check_status").attr("checked") == true) { ChangeState(); } else { ChangeState(); } }); var stat 阅读全文
posted @ 2017-07-21 12:27 fishyue 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 程序调用: PdfHelper帮助类: 阅读全文
posted @ 2017-07-20 08:25 fishyue 阅读(7258) 评论(2) 推荐(0) 编辑
摘要: using Mrp.IBLL; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Data; using ServiceLocation; using Mrp.Domain; namespace Mrp.BLL { ... 阅读全文
posted @ 2017-07-15 16:40 fishyue 阅读(924) 评论(0) 推荐(0) 编辑
摘要: 1.tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元。 tr内是th还是td可由自己定义,th,td可存在于任一行,th与td的区别在与th字体更粗 2.定义一个table默认有border, cellspacing, cellpadding属性 border(外边框粗细) 类型:可为数字 数字字符串 带像素单位的字符串 eg: border= 5, bo... 阅读全文
posted @ 2017-06-28 22:57 fishyue 阅读(908) 评论(0) 推荐(0) 编辑
摘要: Log4Net 生成多个文件、文件名累加解决方法: 项目中的webApi 里采用Log4N用来记录异常日志,但部署后,生成的日志会出现多个累加文件 解决方法: 在appender节点里添加: 阅读全文
posted @ 2017-06-21 14:03 fishyue 阅读(246) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-06-09 15:26 fishyue 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、右键项目,选择属性 2、选择正确的配置,点击高级 3、调试信息选择 none,点击确定。 阅读全文
posted @ 2017-06-01 08:37 fishyue 阅读(2166) 评论(0) 推荐(0) 编辑
摘要: 原创地址:http://www.cnblogs.com/jfzhu/p/4067297.html 转载请注明出处 从IIS 7.5开始,Application Pool Identity的Built-in Account除了LocalService,LocalSystem,NetWorkServic 阅读全文
posted @ 2017-05-24 17:07 fishyue 阅读(299) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Runtime.Serialization.Formatters.Binary; using System.Xml; using System.Threading; ... 阅读全文
posted @ 2017-05-18 22:31 fishyue 阅读(303) 评论(0) 推荐(0) 编辑