自定义博客皮肤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)
  • 收藏
  • 关注

原创 Software Craftsmanship : Implement Inversion of Control with Dependency Injection & Service locator

Software Craftsmanship : Implement Inversion of Control with Dependency Injection & Service locator

2013-05-17 19:08:41 873

原创 Working principles about stack, heap, garbage collector, value type and reference type

/*Author: Jiangong SUN*/Last updates:  29/05/2013I've been long time confused about the reference type, value type, stack, heap and gabarge collector. How do they work? Today I try to

2013-05-16 06:28:30 1113

原创 CSharp Tools - Compiler

/*Author: Jiangong SUN*/CSharp compiler is invoked at the command line using csc.exe file located C:\Windows\Microsoft.NET\Framework\v2.0.50727>.CSharp Compiler compiles CSharp code to MSIL(In

2013-05-13 18:24:29 3263

原创 Design Patterns I - Singleton, Double-Checked locking, Lazy Initialization

/*Author: Jiangong SUN*/Last update: 29/05/2013, 30/05/2013There are 4 categories of design patterns called Gang of Four (GoF):- Creational patterns- Structural patterns- Behavior

2013-05-11 05:19:11 1148

原创 SQL Server - User Accounts

/*Author: Jiangong SUN*/I've made a web site prototype these days, I've found there are some useful information to share with you about some usual problems about users.1/ How to create

2013-04-26 18:35:07 1011

原创 How to solve second button click download problem on SharePoint 2010

/*Author: Jiangong SUN*/In fact, I have a button and it will generate a file and propose users to download it when users click on it. But it works only for the first time.The principle

2013-04-12 21:13:12 1343 1

原创 How to solve Check Out Green Icon Position Problem on SharePoint 2010

/*Author: Jiangong SUN*/Problem Description:When I add one document in a list view and check out it. The green icon position is wrong the one page, but it's right in another page which is

2013-04-12 17:16:36 1140

原创 How to install SharePoint 2010 on Windows 7

/*Author: Jiangong SUN*/It takes me sometime to successfully install SharePoint 2010 on Windows 7. I've encountered some problems during installation.Problem 1: Installation Windows 7

2013-04-07 04:27:37 1572

原创 Microsoft Techdays Paris - Day Three

/*Author: Jiangong SUN*/Finally, my third post about MS Techdays Paris comes! I've prefered to pay attention to sharepoint and WPF on the last day. And two of four sessions I've participated

2013-03-28 18:36:36 1383

原创 Agile Paris - Games

/*Author: Jiangong SUN*/Today, I've participated the first meetup organized byAgile Paris group. There are about twenty persons in all. We have played two games together to practice agile

2013-03-21 05:44:43 1125

原创 Microsoft Techdays Paris - Day Two

/*Author: Jiangong SUN*/The theme for second day is more about ALM, TFS and Agile.Session 1: ALM as a Service with TFS (OBS IT&Labs)Global objectif: ->professionalisation->coherence: s

2013-03-20 23:09:01 2233

原创 Microsoft Techdays Paris - Day One

/*Author : Jiangong SUN*/I've participated microsoft techdays paris in congress palace of paris between 12 and 14 february. I was surprised by the number of the attendants of this conference, a

2013-03-20 22:10:01 4170

原创 How to configure and use Git with visual studio 2012 and TFS

/*Author: Jiangong SUN */"GIT: is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency."  - f

2013-03-12 18:11:13 2116

原创 How to add application to right click menu in Windows

/*Author :Jiangong SUN*/You want to add an application for some types of files when you right click such files, but the system doesn't do it for you automatically. For this problem, you have

2013-03-01 21:52:25 970

原创 How to use log4net in C# application

How to use log4net in C# application

2013-02-04 19:22:05 1403

原创 Software Craftsmanship - code kata

Software Craftsmanship - code kata

2013-01-25 19:03:20 1180

原创 Introduction to SEO Search Engine Optimisation practices

/*By Jiangong SUN*/Search Engine Optimisation(SEO) is a very important concept for page ranking in search engines like Google, Baidu. In fact, if your page is not displayed in the first few pages re

2013-01-21 04:53:24 1868

原创 How to export Oracle Database and packages

/*By Jiangong SUN*/Export a oracle database for a specific schema in command line is an easy task.Here is how I did:--------------------------------------------------------------------

2013-01-12 04:14:21 1041

原创 How to create RESTful WCF Service

/*by Jiangong SUN*/Based on my last post about how to create, host, test and consume WCF Service, here we will discover how to create RESTful WCF Service.“Representational State Transfer (RE

2013-01-07 04:33:39 1143

原创 How to create, host, test and consume a WCF Web Service

/*by Jiangong SUN*/WCF(Windows Communication Foundation) web service is used to facilitate the communication of different applications on different plateforms.ASMX web service support HTTP pro

2012-12-28 20:07:25 1731

原创 Windows Presentation Foundation Introduction(V) - Configuration & Deployment

/*by Jiangong SUN*/WPF application deployment technologies:1) XCopy deployment.XCopy deployment refers to the use of the XCopy command-line program to copy files. XCopy is suitable for sim

2012-12-11 05:04:58 977

原创 Windows Presentation Foundation Introduction(IV) - Data Binding

Windows Presentation Foundation Introduction(IV) - Data Binding

2012-12-11 04:44:53 957

原创 PNG-8 format image opacity problem in IE8 & IE7

/*by Jiangong SUN*/I use jquery ui library for displaying several tabs with correspondant contents in my project. It works perfectly in Firefox and Chrome. When I click a tab different fro

2012-12-10 18:41:03 1393

原创 Create a simple unit test project with Visual Studio Unit Testing Framework

/*by Jiangong SUN*/Unit test is used widely used in projects, it facilitates a lot the work of developers. Test Driven Development is a very popular development method based on unit testing.Th

2012-12-08 01:21:34 1539

原创 Discover Microsoft Team Foundation Server

/*by Jiangong SUN*/Team Foundation Server (TFS) is an collaboration server integrated with versioning control, code review, task tracking, bug tracking functionalities using agile or scrum devel

2012-12-04 05:55:41 996

原创 How to Install Windows 7 on Oracle VirtualBox 4.2

/*By Jiangong SUN*/Today I've installed Oracle VirtualBox 4.2 just for curiosity and I'll show you how to Install Windows 7 on it.1) Here is the main interface2) Click "New" to add a

2012-11-26 06:23:32 1150

原创 Windows Presentation Foundation Introduction(III) - User Interfaces Part II

/*by Jiangong SUN*/Resources:WPF resources enable you to reuse commonly defined objects and values. You canseparate these resources into separate XAML files or into separate assemblies. This s

2012-11-25 04:16:05 1080

原创 Windows Presentation Foundation Introduction(II) - User Interfaces Part I

/*by Jiangong SUN*/Page Layout:WPF provides layout support by using a common infrastructure that includes layout classes such asDockPanel, Grid, StackPanel, and WrapPanel.WPF Page Layout

2012-11-23 05:03:13 1174

原创 Windows Presentation Foundation Introduction(I) - Overview

/*by Jiangong SUN*/Windows Presentation Foundation (or WPF) is a computer-software graphical subsystem for rendering user interfaces in Windows-based applications. WPF, previously named "Avalo

2012-11-22 06:39:13 947

原创 Dependency property in WPF

/*by Jiangong SUN*/XAML: eXtensible Application Markup LanguageDependency property represents a property that can be set through methods such as, styling, data binding, animation, and inheri

2012-11-19 05:45:11 822

原创 How to realize range slider using jQuery

/*by Jiangong SUN*/Here is an sample for my project which is realized using aspx and jquery slider library.$(document).ready(function () { //centralised slider code var stepvalue

2012-10-15 21:44:43 1140

原创 How to implement scrolling image with javascript in web page

/*by Jiangong SUN*/I want to implement a scrolling section in web page. The height of left part is fixed, the right part is variable and a scrolling section inside.Here is the page s

2012-10-04 17:17:35 868

原创 IIS:The process cannot access the file because it is being used by another process.

/*by Jiangong SUN*/I have encountered the problem when i configure a website in IIS 7."The process cannot access the file because it is being used by another process. (Exception from HRESULT:

2012-09-28 16:38:13 5241

原创 DateTime to TimeStamp

/*by Jiangong SUN*/Here is the extension methods for converting DateTime and TimeStamp in C sharp. public static class DateTimeExtensions { public static int DateTimeToTim

2012-05-04 20:33:29 1319

原创 How to use jquery template js

/*****by Jiangong SUN*****/Jquery template can help generate code in the same format. It's like repeater control in asp.net.html div:  JS template: Template

2012-04-23 15:59:55 3983

原创 How to create custom shortcut in visual studio

/*******by Jiangong SUN******/Open Visual Studio -> Tools -> Options -> Environement -> KeyboardSearch the action you want, for example, I searched "Edit.RemoveAndSort".Then, you

2012-03-09 17:14:12 823

原创 How to update ASP.NET Page's .designer.cs file in visual studio

/*****by Jiangong SUN*****/Address: http://write.blog.csdn.net/postedit/7330087Scenario:I want to add repeater, litteral or register user control in ASP.NET pages. Sometimes the page's "

2012-03-07 19:30:00 987

原创 Knowledge Conclusion - PART V: IIS(Internet Information Server) Basics

Knowledge Conclusion - PART V: IIS Basics

2012-03-07 01:05:37 788

原创 Knowledge Conclusion - PART IV: Design patterns

Knowledge Conclusion - PART IV: Design patterns

2012-03-07 01:04:09 688

原创 Knowledge Conclusion - PART II : CSharp, .NET

Knowledge Conclusion - PART II : CSharp, .NET

2012-03-07 01:01:29 1486

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关注的人

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