上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: $.ajax({ url: "/DropDownBinder/bindQuota" , //请求的url地址 //dataType: "json", //返回格式为json async: true, //请求是否异步,默认为异步,这也是ajax重要特性 data: { engconfigId: en 阅读全文
posted @ 2019-05-23 10:45 tommy~hi 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1. 说明 在企业应用系统领域,会面对不同系统之间的通信、集成与整合,尤其当面临异构系统时,这种分布式的调用与通信变得越发重要。其次,系统中一般会有很多对实时性要求不高的但是执行起来比较较耗时的地方,比如发送短信,邮件提醒,更新文章阅读计数,记录用户操作日志等等,如果实时处理的话,在用户访问量比较大 阅读全文
posted @ 2019-05-23 10:44 tommy~hi 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 在生产环境下,经常需要监测查看WebAPI接口的调用情况,日志就成了必不可少的手段之一,本文采用NLog实现WebAPI的日志记录。 环境 版本 操作系统 Windows 10 prefessional 编译器 Visual Studio 2015 创建WebAPI 创建WebAPI项目,选择ASP 阅读全文
posted @ 2018-12-13 17:17 tommy~hi 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: 使用模版生成简历 使用word的FormField预先插入占位符,然后在代码中获取所有FormField,进行替换。这种场景特别适用于,模版固定动态更改内容。看看最终效果 表单域制作步骤 1.打开word中的开发工具选项,对于导航栏中没有这一项的,可以通过 文件->选项->自定义功能区->开发工具 阅读全文
posted @ 2018-12-13 16:36 tommy~hi 阅读(4468) 评论(0) 推荐(0) 编辑
摘要: #region 服务器配置信息是配置再webconfig中 private static string _HostName = System.Configuration.ConfigurationManager.AppSettings["RabbitMQHostName"].ToString(); 阅读全文
posted @ 2018-12-06 20:13 tommy~hi 阅读(318) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespac 阅读全文
posted @ 2018-12-06 19:57 tommy~hi 阅读(692) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml.Serialization;using Sy 阅读全文
posted @ 2018-12-06 19:53 tommy~hi 阅读(667) 评论(0) 推荐(0) 编辑
摘要: --为字段添加注释 --格式如右:execute sp_addextendedproperty 'MS_Description','字段备注信息','user','dbo','table','字段所属的表名','column','添加注释的字段名'; execute sp_addextendedpr 阅读全文
posted @ 2018-12-05 12:57 tommy~hi 阅读(7738) 评论(0) 推荐(1) 编辑
摘要: 数据库产生阻塞(Blocking)的本质原因 :SQL语句连续持有锁的时间过长 ,数目过多, 粒度过大。阻塞是事务隔离带来的副作用,它是不可避免的,而且是一个数据库系统常见的现象。 但是阻塞的时间和出现频率要控制在一定的范围内,阻塞持续的时间过长或阻塞出现过多(过于频繁),就会对数据库性能产生严重的 阅读全文
posted @ 2018-11-30 12:43 tommy~hi 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 效果图: 页面初始化时调用: document.getElementById('winpop').style.height = '0px';//要初始化这个高度,虽然CSS里已经初始化了 setTimeout("tips_pop()", 0); 消息内容: <div id="winpop"> <di 阅读全文
posted @ 2018-11-28 18:34 tommy~hi 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页