2017年9月14日
摘要: 帐号: 密码: 确认密码: 阅读全文
posted @ 2017-09-14 07:10 biind 阅读(982) 评论(0) 推荐(0)
  2017年9月13日
摘要: 阅读全文
posted @ 2017-09-13 00:13 biind 阅读(6002) 评论(0) 推荐(0)
  2017年9月5日
摘要: 一:VS10x Code Map(打开后台cs文件,插件列出了所有的字段、方法,方便当代码行多的时候查找,提升工作效率) 1:下载 https://marketplace.visualstudio.com/items?itemName=MichaelKissBG8.VS10xCodeMAP 2.下载 阅读全文
posted @ 2017-09-05 05:43 biind 阅读(419) 评论(0) 推荐(0)
  2017年9月1日
摘要: 一:引入easyui 1:参考官网:http://www.jeasyui.net/ 2:引入 整个文件夹:themes,包括:icon.css、image 等等 3:引入easyui.css icon.css 4:引入:jquery.min.js 、 jquery.easyui.min.js 阅读全文
posted @ 2017-09-01 23:39 biind 阅读(1713) 评论(0) 推荐(0)
  2017年8月27日
摘要: private void DownLoad(string fileName, string path) { FileInfo fi = new FileInfo(path); if (fi.Exists) { Response.Clear(); ... 阅读全文
posted @ 2017-08-27 11:28 biind 阅读(874) 评论(0) 推荐(0)
  2017年4月21日
摘要: 1. 事件起因 PM发现bug,为了找出问题,我打算拷贝服务器上面对应的数据到本地数据库,以便快速定位问题。于是,我编写了删除语句,目的是删除本地库的数据,然后通过链接服务器将数据拷贝进来。当时MS连接了本地库和正式服务器,一时大意,删除语句在服务器执行了。 2. PM处理 PM立马讲前五天的数据库 阅读全文
posted @ 2017-04-21 07:58 biind 阅读(231) 评论(0) 推荐(0)
  2017年4月12日
摘要: 1 --字符串分割表函数 2 declare @str varchar(1000) 3 declare @split varchar(10) 4 5 declare @i int; 6 declare @count int; 7 8 declare @ChildStr varchar(1000); 9 declare @splitStr varchar(1000); 10... 阅读全文
posted @ 2017-04-12 07:55 biind 阅读(546) 评论(0) 推荐(0)
  2016年11月3日
摘要: 参考博客:http://www.cnblogs.com/ChineseMoonGod/p/5860449.html,非常感谢博主的知识分享。 1.创建一个登录名,完全操作数据库权限,步骤为:创建登录名->创建用户->分配角色 2.创建一个登录名,只控制数据库部分表,步骤为:下面五个。 数据库有很多表 阅读全文
posted @ 2016-11-03 07:39 biind 阅读(487) 评论(0) 推荐(0)
  2016年10月26日
摘要: 参考博客:http://www.cnblogs.com/jiekzou/p/5988099.html 非常感谢博主分享。 1.set nocount on 关闭行基数信息,减少网络通信,提高程序性能。 2.count(1) count(2) count(name) count(*) 前三种效果一样, 阅读全文
posted @ 2016-10-26 07:18 biind 阅读(197) 评论(0) 推荐(0)
  2016年10月12日
摘要: 推荐网址:http://www.php100.com/manual/jquery/,用法教学,包括实例。 分类:显示隐藏、淡入淡出、滑动、自定义。 阅读全文
posted @ 2016-10-12 07:41 biind 阅读(132) 评论(0) 推荐(0)