摘要: This Class is used to handle SQL procedures, including Verify SP exist or not, Create SP into DB and Execute SP via C#.using System;using System.Data.... 阅读全文
posted @ 2015-08-07 11:03 Blackeye 阅读(256) 评论(0) 推荐(0) 编辑
摘要: Code snippet about some Windows service operation methods.Install Service:public static void InstallService(string filepath, string serviceName, strin... 阅读全文
posted @ 2015-08-07 10:57 Blackeye 阅读(254) 评论(0) 推荐(0) 编辑
摘要: English is my disadvantage all times , as a developer or tester a good English is very important. So how to improve or show you have a good English sk... 阅读全文
posted @ 2015-07-30 22:46 Blackeye 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1. Culture Options [DisplayName("Culture Options")] public IEnumerable CultureOptions { get { retu... 阅读全文
posted @ 2015-07-30 22:42 Blackeye 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Recently I have got some free time and go over the knowledge about SQLServer.Write this acticle in order to review in the future.1. Join OptionJoin i... 阅读全文
posted @ 2015-07-30 22:41 Blackeye 阅读(218) 评论(0) 推荐(0) 编辑
摘要: In 2014, I need to change my role from a SDET into Dev or to be a better SDET. Current job and work environment cannot provide enough passion to conti... 阅读全文
posted @ 2015-07-30 22:28 Blackeye 阅读(220) 评论(0) 推荐(0) 编辑
摘要: From:http://debugmode.net/2014/09/10/no-connection-string-named-could-be-found-in-the-asp-net-mvc-application-config-file-solved/?utm_source=tuicoolWh... 阅读全文
posted @ 2015-03-03 15:10 Blackeye 阅读(545) 评论(0) 推荐(0) 编辑
摘要: [转Technical Tips]概述:今天给大家简单介绍一下C#的内部类FileSystemWatcher。要是你的日常工作中需要做有关文件或者目录监控的功能,别忘了用这个.Net内建类。用它可以很容易地做出类似日志分析监控、文件自动化处理等等工具。一个简单的例子如下: FileSystemWat... 阅读全文
posted @ 2014-12-11 14:46 Blackeye 阅读(1168) 评论(1) 推荐(0) 编辑
摘要: 经常会用到数据与前台控件绑定相关的问题,一直知道要用委托(代理)但每次都忘,而且每次都百度了一遍又一遍,就是不长记性,这次一定好好记下来下次就不会忘了。 后台数据与前台绑定主要分为两步: 第一步把要绑定的数据定义为一个数据集合或对象绑定到List中,方便调用:public class TestCa... 阅读全文
posted @ 2014-12-01 21:14 Blackeye 阅读(459) 评论(0) 推荐(0) 编辑
摘要: Technology Questions(C#):1. new用法总结三种用法如下:new关键字可用作运算符、修饰符或约束。1)new运算符:用于创建对象和调用构造函数。这种大家都比较熟悉,没什么好说的了。2)new修饰符:在用作修饰符时,new关键字可以显式隐藏从基类继承的成员。using Sy... 阅读全文
posted @ 2014-05-16 11:27 Blackeye 阅读(322) 评论(0) 推荐(1) 编辑