自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

SUN Jiangong's technical blog

新博客:www.sunjiangong.com

  • 博客(246)
  • 资源 (29)
  • 收藏
  • 关注

原创 How to launche powershell script in C#

/**By Jiangong SUN**/If you want to launch a powershell script in CSharp application, you don't necessarily need to construct a cmd command line to launch the script.You could make your lif...

2015-04-24 18:58:33 3041 1

原创 How to backup and restore database in SQL Server

/*By Jiangong SUN*/If you want to backup and restore one database in SQL Server.Firstly, create a shared folder, and add everyone with read/write right.Secondly, backup your database....

2015-04-04 00:40:58 2577

原创 MS SQL Server - How to change an existing column to auto-increment column

How to make an existing column to be auto-incremented

2015-03-27 06:55:25 2181

原创 Just4Fun - Comparaison between const and readonly in C#

Just4Fun - Comparaison between const and readonly in C#

2015-03-13 03:07:01 2160

原创 [Project organization] - structure refactoring with TFS

[Project organization] - structure refactoring with TFS

2015-03-10 19:37:52 2159

原创 CSharp - Memory leaks problem detection and solution

CSharp - Memory leaks problem detection and solution

2015-03-05 05:14:31 2262

原创 WPF - Conditional binding with trigger

WPF - conditional binding with trigger

2015-02-25 02:31:52 2806

原创 Just4Fun - PreIncrement vs PostIncrement

Just4Fun PreIncrement vs PostIncrement

2015-02-16 06:53:01 2271

原创 Introduction to dependency injection with unityContainer

Introduction to dependency injection with unityContainer

2015-02-16 05:22:04 2209

原创 Microsoft Techdays 2015 - Etat de lieux JavaScript

Microsoft Techdays 2015 - Etat de lieux JavaScript

2015-02-16 04:20:03 2743

原创 Microsoft Techdays Paris 2015

Microsoft Techdays Paris 2015

2015-02-15 23:02:16 1904

原创 Introduction to configuration wrapper

Introduction to configuration wrapper

2015-02-08 17:56:58 2040

原创 [Project organization] some advices

Some advices for project organization

2015-02-08 07:34:18 2090

原创 How to solve "one or more projects in the solution were not loaded correctly" problem?

How to solve "one or more projects in the solution were not loaded correctly" problem in visual studio?

2015-02-04 01:23:30 5117

原创 How to solve TFS slow response problem?

How to solve TFS slow response problem?

2015-01-16 04:21:20 2276

原创 How to solve "The installation source for this product is not available" problem?

How to solve "The installation source for this product is not available." problem?

2015-01-06 07:13:26 3812

原创 CSharp - property acess modifier usage

CSharp property acess modifier usage

2014-12-28 07:38:26 2094

原创 BadImageFormatException : Could not load file or assembly or one of its dependencies.

BadImageFormatException : Could not load file or assembly or one of its dependencies.

2014-11-08 01:23:52 4175

原创 Local database deployment problems and fixtures

Local database deployment problems and fixtures

2014-11-07 20:03:08 2187

原创 How to solve the problem : "You have been logged on with a temporary profile"

How to solve the problem : "You have been logged on with a temporary profile"

2014-10-21 04:51:01 4065

原创 SQL data reader reading data performance test

SQL data reader reading data performance test

2014-08-13 00:59:59 1259

原创 Some advice on tests

Some advice on tests

2014-08-12 22:22:55 779

原创 How to unshelve a shelveset into another branch with TFS

How to unshelve a shelveset into another branch with TFS

2014-05-21 19:33:45 3036

原创 BulkCopy from source table to destination table with a column whose type is different

BulkCopy from source table to destination table with a column whose type is different

2014-03-26 01:47:12 1897

原创 How to save SQL Server data as Insert INTO SQL Script

How to save SQL Server data as Insert INTO SQL Script

2014-03-08 01:28:45 1624

原创 Web service failed to start because of wrong IIS configuration

The authentication schemes configured on the host ('IntegratedWindowsAuthentication') do not allow those configured on the binding 'WSHttpBinding' ('Anonymous').

2014-02-20 19:48:21 2035

原创 How to create custom snippet in Visual studio

How to create custom snippet in Visual studio

2014-01-23 02:03:43 1349

原创 Design Patterns VI : Simple Factory, Factory Method, Abstract Factory

Design Patterns VI : Simple Factory, Factory Method, Abstract Factory

2014-01-04 19:53:49 1346

原创 How to create a generic WCF service proxy ?

/*Author: Jiangong SUN*/WCF Service Client:/// /// A WCF service client. /// /// The type of the service contract. internal class ServiceClient : IDisposable where T

2013-10-10 05:31:12 1071

原创 CSharp Algorithm - Replace multiplication operator with a method

CSharp Algorithm - Replace multiplication operator with a method

2013-09-13 17:12:01 1056

原创 LINQ - Deferred execution

LINQ - Deferred execution

2013-09-09 16:37:47 1663

原创 Design patterns V : Facade Pattern

Design patterns V : Facade Pattern

2013-09-07 16:31:52 1075

原创 CSharp - Extension method usage

CSharp - Extension method usage

2013-09-07 00:51:53 1461

原创 CSharp - Type Inference and usage of var

CSharp - Type Inference and usage of var

2013-09-05 20:02:21 3150

原创 ASP.NET - Application Life Cycle Principle

ASP.NET - Application Life Cycle Principle

2013-09-04 05:17:48 1705

原创 How to disable Control + Space toggle key for switching to Chinese language ?

How to disable Control + Space toggle key for switching to Chinese language ?

2013-08-13 18:00:42 1225

原创 CSharp Algorithm - How to traverse binary tree by breadth (Part II)

CSharp Algorithm - How to traverse binary tree by breadth (Part II)

2013-08-02 17:45:02 1022

原创 CSharp Algorithm - Shell sort

CSharp Algorithm - Shell sort

2013-07-26 23:30:01 1423

原创 SharePoint solution and feature management with PowerShell

SharePoint solution and feature management with PowerShell

2013-07-26 16:07:27 1288

原创 Introduction to SharePoint hierarchy

Introduction to SharePoint hierarchy

2013-07-26 05:19:13 1201

wcf service sample code for c#

a simple wcf service for c# developers

2012-12-27

Unit Test Sample Code

a demostration for unit test in c#

2012-12-10

JavaScript DOM 编程艺术(含源码)

英文原版DOM Scripting Web Design with JavaScript and the Document Object Model,语言通俗易懂,适合dom和javascript初学者。

2010-01-14

Excel VBA 开发技巧 800例

Excel VBA 开发技巧 800例。 一共有20章,下载的不是最全,缺一章,但经过我计算,一共有将近1100的例子。 非常好的资源,和大家共享!!

2009-12-18

jquery reference guide 英文原版

jquery 参考指南。详细的jquery方法使用指南。包括dom操作,event方法,ajax方法等。

2009-11-16

PHP Programming with PEAR XML, Data, Dates, Web Services, and Web APIs

PHP Programming with PEAR XML, Data, Dates, Web Services, and Web APIs 推荐!!!!

2009-10-17

PHP and Smarty on Large-Scale Web Development

PHP and Smarty on Large-Scale Web Development PHP Smarty 开发

2009-10-17

Core PHP Programming, Third Edition

Core PHP Programming, Third Editionchm 核心php编程,第三版。

2009-10-16

Beginning Javascript with DOM Scripting and Ajax (From Novice to Professional)

Beginning Javascript with DOM Scripting and Ajax (From Novice to Professional) Javascript DOM和Ajax编程,从新手到专家!! 推荐!!!

2009-10-16

Beginning PHP and MySQL From Novice to Professional, Third Edition PDF

Beginning PHP and MySQL From Novice to Professional, Third Edition PDF PHP,mysql从新手到专家,第三版。 推荐!!!

2009-10-13

Beginning PHP and MySQL 5 From Novice to Professional, Second Edition

Beginning PHP and MySQL 5 From Novice to Professional, Second Edition.pdf php从新手到专家,第二版。推荐!

2009-10-13

Advanced PHP for Web Professionals 2002

Advanced PHP for Web Professionals 高级php编程指导

2009-10-13

php manual 英文版 2009年3月

php manual 英文版 2009年3月27日。 很不错的资料。可离线学习。

2009-10-10

10dayphp rar版本

10dayphp rar版本, 给初学者一个基础的框架知识。

2009-10-10

数据结构(C#语言版) 中文版

数据结构(C#语言版) 中文版 非常有用的书!!!!强烈推荐!!

2009-10-09

大话设计模式 之 小菜编程成长记

伍迷戏说面向对象程序设计 C#版 大话设计模式 之 小菜编程成长记

2009-10-09

PHPfor Dummies, 2nd Edition 英文版

PHP for Dummies, 2nd Edition 英文版 初学者的不错选择。

2009-10-09

UML for Java Programmers中文共享版

UML for Java Programmers中文共享版 version 1.0

2009-10-08

vb精华文摘,共分10篇。

vb精华文摘,共分10篇。 《VB精华文摘-其他篇》 《VB精华文摘-图形篇》 《VB精华文摘-字符串篇》 《VB精华文摘-控件篇》 《VB精华文摘-数据库篇》 《VB精华文摘-文件篇》 《VB精华文摘-游戏篇》 《VB精华文摘-窗体篇》 《VB精华文摘-系统篇》 《VB精华文摘-网络篇》

2009-10-08

Windows 错误代码表查询

Windows 错误代码表查询 实用的错误查询工具。

2009-10-08

EXCEL.2007.MACROS.MADE.EASY.Oct.2008

EXCEL.2007.MACROS.MADE.EASY.Oct.2008 VBA学习的经典书籍,与大家共勉!!

2009-10-08

正则表达式30分钟入门教程

正则表达式30分钟入门教程。 版本:v2.31 (2009-4-11) 作者:deerchao

2009-10-08

Thinking in java 3rd edition 中文版

Thinking in java 3rd edition 中文版。 共16章,950页。

2009-10-08

High.Performance.Web.Sites.Sep.2007

High.Performance.Web.Sites.Sep.2007 高性能的网站

2009-10-07

ZEND Framework Certification CASE STUDY

zend framework 认证 案例分析 authentication & authorisation etc

2009-10-07

Pro. PHP Patterns, Frameworks, Testing and More

OOP PHP,模式,框架,测试。 Patterns, Frameworks, Testing and More,OOP PHP5

2009-10-07

Object Oriented.PHP - Concepts Techniques and Code

OOP PHP入门级资料,共17章, Acknowledgments Introduction Chapter 1: What a Tangled Web We Weave Chapter 2: Basics of Object-Oriented Programming Chapter 3: Object-Oriented Features New to PHP 5 Chapter 4: Show a Little Class Chapter 5: Mod UR Class Chapter 6: The ThumbnailImage Class Chapter 7: Building the PageNavigator Class Chapter 8: Using the PageNavigator Class Chapter 9: Database Classes Chapter 10: Improvement Through Inheritance Chapter 11: Advanced Object-Oriented Programming Concepts Chapter 12: Keeping It Fresh Chapter Chapter 14: Creating Documentation Using the Reflection Classes Chapter 15: Extending SQLite Chapter 16: Using PDO Appendix A: Setting Up PHP 5 Appendix B: Conversion Table: PHP 4 and PHP 5 Glossary Index

2009-10-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除