自定义博客皮肤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

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

原创 CSS3新特性

<br />/*********by garcon1986******/<br /> <br /> <br /> <br />1) border边框<br /><br />border-color: 边框颜色<br />如:<br />border: 8px solid #000;<br />-moz-border-bottom-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;<br />-moz-border-top-colors:   

2010-08-28 06:29:00 911

原创 8月份面试总结之TLconseil

面试总结:TLconseil:1. Doctype是什么? 声明位于文档中的最前面的位置,处于 标签之前。此标签可告知浏览器文档使用哪种 HTML 或 XHTML 规范。该标签可声明三种 DTD 类型,分别表示严格版本、过渡版本以及基于框架的 HTML 文档。HTML 4.01 规定了三种文档类型:Strict、Transitional 以及 Frameset。1)HTML Strict DTD:如果您需要干净的标记,免于表现层的混乱,请使用此类型。请与层叠样式

2010-08-26 06:11:00 897

转载 Quicks模式和Strict模式对比

<br />1、quirks mode和strict mode是浏览器解析css的两种模式,或者可以称之为解析方法。目前正在使用的浏览器这两种模式都支持。<br /><br />2、历史原因。<br />当早期的浏览器Netscape 4和Explorer 4对css进行解析时,并未遵守W3C标准,这时的解析方式就被我们称之为quirks mode(怪异模式),但随着W3C的标准越来越重要,众多的浏览器开始依照W3C标准解析CSS,仿照W3C标准解析CSS的模式我们叫做strict

2010-08-26 04:27:00 2130

原创 Doctype总结

What is it?The !DOCTYPE declaration is a top-level tag-like reference known as a Public Text Identifier. It should appear at the very beginning of an HTML/XHTML document in order to identify the content of the document as confo

2010-08-26 03:13:00 1069

原创 TortoiseSVN本地配置

<br />/***************by garcon1986*******************/<br /> <br />1. 下载TortoiseSVN<br /> <br />从http://tortoisesvn.net/downloads 中下载TortoiseSVN,并可以安装中文安装包。<br /> <br />2. 配置本地目录<br /><br /> <br />首先,在目录中创建一个文件夹。如: G:/SVN/test-svn,打开此文件夹并右击选择TortoiseSVN->

2010-08-15 06:11:00 2114

原创 MySQL 视图

<br />/****************by garcon1986*******************/<br /> <br /> <br /> <br />CREATE TABLE IF NOT EXISTS `testtable1` ( `pk_tId` int(11) NOT NULL AUTO_INCREMENT, `firstName` varchar(20) DEFAULT NULL, `lastName` varchar(20) DEFAULT NULL, `a

2010-08-14 04:13:00 571

原创 MySQL全文搜索

/*************by Jiangong SUN********************/ create database testDB:use testDB; create table testTable( pk_tId int auto_increment not null, firstName varchar(20), lastName varchar(20),

2010-08-14 04:11:00 612

原创 Eclipse下安装配置SVN

<br />/*************by garcon1986******************/<br /> <br /><br />1. 安装subclipse<br /><br />打开Eclipse,Help -> Install New software <br /><br />在URL中输入subclipse,会弹出:subclipse - http://subclipse.tigris.org/update_1.6.x,选中然后选择列表中的Subclipse。进行安装。

2010-08-14 03:06:00 1053

原创 IBM笔记本使用法语输入法,如何键入法语特殊字符?

/*Author: Jiangong SUN*/  法语键盘:  IBM T60,T61键盘:   首先,介绍一下法语字符:l'accent aigu(闭音音符): él'accent grave(开音音符): è , àl'accent circonflexe(长音音符): â î ê û ô le tréma(分音符):

2010-08-14 00:05:00 3265

原创 php5概念总结之一

/***********by garcon1986*******************/1. $this变量是对当前对象的引用,$this->var; $this->method();2. php5中的变量和常量称为property,函数称为method.声明属性://invalidpublic $var = 'hel'.'lo';public $var2 = helloEOD;public $var3 = 1+2;public $var4 = self::Static

2010-08-12 20:42:00 710

原创 superglobals超全局变量之$GLOBALS, $_GET, $_POST, $_FILES, $_REQUEST, $_SESSION 等

<br />/*****************by garcon1986********************/<br /> <br /><?php<br /><br />//$GLOBALS — References all variables available in global scope<br />function test(){<br />    $x = 'local x';<br />    echo "global scope ".$GLOBALS['x']."<br

2010-08-06 09:15:00 1086

原创 superglobals超全局变量之server

/**********by Jiangong SUN*******************/ //$_SERVER -- $HTTP_SERVER_VARS [deprecated] — Server and execution environment information//test url: http://localhost/superglobal.php?id=1&name

2010-08-06 08:41:00 771

原创 print_r 和var_dump的区别

/*************by Jiangong SUN******************/ The var_dump function displays structured information about variables/expressions including itstype and value. Arrays are explored recursively

2010-08-06 04:56:00 1951

原创 reference引用

/***************by Jiangong SUN***************/ //$a =& $b;//$a和$b完全相等,指向了同一个内存地址。如果a改变了值,b也将改变值。//Note: $a and $b are completely equal here. $a is not pointing to $b or vice versa. $a and $

2010-08-06 04:15:00 681

原创 变量变量和变量函数

<br />/**********by garcon1986***********/<br /><?php<br />//变量函数:当一个变量后有圆括号,php将寻找与变量的值同名的函数,并且尝试执行它。<br /><br />function toto(){<br />    echo "toto function";<br />}<br />$to = 'toto';<br />$to();<br />echo '<br />';<br /><br />function

2010-08-03 21:24:00 724

原创 func_args函数

/**********by Jiangong SUN*************/ //func_num_args() return the numbers of parameters passed to a function//func_get_arg($arg_num) return a particular parameter //func_get_args() return

2010-08-03 18:54:00 670

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

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