原创 IT人必看十大站

1、Chinaunix 網址:http://www.chinaunix.net/ 簡介:中國最大的linux/unix技術社區。 2、ITPub 網址:http://www.itpub.net/ 簡介:有名氣的IT技術論壇,看看它的al

原创 導出DataGrid中的數據到Excel

public void ExportToExcel(System.Web.UI.Control ctl) { bool CurrCtlVisible=ctl.Visible; ctl.Visible=true;

原创 Website Addresses Collections

http://blog.csdn.net/yincheng01/archive/2010/02/19/5312011.aspxhttp://blog.csdn.net/yzsind/archive/2010/03/21/5401134.a

原创 9個職場好習慣

細節決定成敗的職場命題,最集中的表現就是職場習慣。無怪乎,人們常說,播種行爲,收穫習慣;播種習慣,收穫性格;播種性格,收穫命運。一個職場好習慣,擁有讓你成長得更快的強大力量。     1.把自己的時間調快五分鐘     關鍵詞:守時  

原创 ASP.NET DropDownList列表項添加前導空格(Leading Space)的兩種方法

我們知道:RFC 1866中定義了一個named entity,即 ASCII是160;方法一:     char nbsp = (char)0xA0;     dropDownList.Items.Add( new ListI

原创 Understanding and Managing Transaction Logs--Transaction Log Logical Architecture

The SQL Server 2005 transaction log operates logically as if the transaction log is a string of log records. Each log r

原创 Understanding and Managing Transaction Logs---Introduction to Transaction Logs

Updated: 17 July 2006 Every SQL Server 2005 database has a transaction log that records all transactions and the datab

原创 辦公室白領須忌諱的五種惡習

導語:社會中的政治和經濟密不可分,在職場中職場政治和個人能力同樣密不可分,職場的精英們個個有能力,懂政治。個人能力表現爲時間掌控能力、知識水平、現場問題解決能力,職場政治能力表現爲判斷自身所處環境的能力。那麼,在職場中白領需要注意的禁忌有

原创 Query Tuning Recommendations

Some queries consume more resources than others. For example, queries that return large result sets and those that cont

原创 JavaScript在IE與FireFox中遍歷集合(數組)的語法

在IE中我們可以使用圓括號()或方括號[]訪問集合(數組),而在FireFox中只能用方括號[]; 點贊 收藏 分享 文章舉報 Jason_Steven 發佈了31 篇原創文章

原创 B2B & B2C & C2C

Business-to-Business     Business-to-business (B2B) describes commerce transactions between businesses, such as between

原创 CAPTCHA(驗證碼)的來源與作用

    國內好多人將驗證碼翻譯爲Validation Code,但是隻要我們Google下,就會發現這是個Chinglish翻譯.    驗證碼的來源          驗證碼的英文CAPTCHA 這個詞最早是在2002年由卡內基梅隆大學

原创 遍歷(Traverse)HTML SELECT選項

<select id="selTest">       <option value="1">Test</option>       <option value="2">&nbsp;&nbsp;&nbsp;Test1</option>   

原创 Understanding and Managing Transaction Logs--Transaction Log Physical Architecture

Updated: 14 April 2006 The transaction log in a database maps over one or more physical files. Conceptually, the log f

原创 Factory Patterns

What is a factory? A factory is a place where objects are created.1. Factory patterns are examples of creational patter