C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Custom Buttons\
- Dec 03 Mon 2007 17:45
自訂Google工具列按鈕--Yahoo!奇摩字典
C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Custom Buttons\
- Dec 03 Mon 2007 17:28
自訂Google工具列按鈕--iThome新聞
以下XML檔放到
C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Custom Buttons\
- Dec 03 Mon 2007 17:01
自訂Google工具列按鈕--CNET新聞
以下XML檔放到
C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Custom Buttons\btn_cnet.xml
- Dec 03 Mon 2007 16:45
自訂Google工具列按鈕的API
自訂Google工具列按鈕的API文件
http://www.google.com/tools/toolbar/buttons/intl/zh-TW/apis/howto_guide.html
◎使用Google 工具列自訂按鈕 使用Google 工具列自訂按鈕編輯器
- http://toolbar.google.com/buttons/intl/zh-TW/edit/?custom_button_uri=U_按鈕的XML檔名
例如:
http://toolbar.google.com/buttons/intl/zh-TW/edit/?custom_button_uri=U_btn_cnet.xml - 產生圖片編碼,http://www.motobit.com/util/base64-decoder-encoder.asp。
- 在編輯區貼上XML。
- 按【儲存至Google 工具列...】,就會多一個按鈕。
- Dec 02 Sun 2007 17:23
轉載:HTML擴充字元表
【資料來源:http://www.geocities.com/alfredcave/ASCIIextend.html 】
相信你已參閱過 &指令 和 特殊字元表,還是找不到某些特殊符號嗎? 希望這兒的擴充字元表能滿足你的需要。(註:中文版或英文版IE5.0以上皆適用,但是不見得所有的瀏覽程式都能正確顯示)。
- Dec 02 Sun 2007 17:18
轉載:HTML特殊字元表
【資料來源: http://www.geocities.com/alfredcave/ASCII.html 】
當你在撰寫網頁(HTML文件)時,三不五時總會用到一些特殊符號,你當然希望能自由彈性地運用它們。你若已參閱過 &指令 就知道:即使在一般鍵盤上找不到某些特殊符號,仍可以運用 & 和 ; 以及一小段英文字意簡寫來表示,或是運用 &# 和 ; 以及ASCII編碼來表示。(註:中文版或英文版IE5.0以上皆適用,但舊版瀏覽程式可能無法正確顯示)。
- Dec 01 Sat 2007 17:38
HTML的特殊字元
字元 | 描述 | 字元代號 | 字元碼 |
空白 | |   | |
< | 小於 | < | < |
> | 大於 | > | > |
& | and | & | & |
" | 雙引號 | " | " |
' | 單引號 | ' |
字元 | 描述 | 字元代號 | 字元碼 |
¢ | 分 | ¢ | ¢ |
£ | 英鎊 | £ | £ |
¥ | 日圓 | ¥ | ¥ |
§ | 段落、節 | § | § |
© | 版權 | © | © |
® | 註冊商標 | ® | ® |
“™ | 商標 | ™ | |
° | 度 | ° | |
± | 加或減 | ± | ± |
× | 乘 | × | × |
÷ | 除 | ÷ | ÷ |
“ | 左引號 | “ | |
” | 右引號 | ” |
- Nov 28 Wed 2007 20:49
轉載:實戰設計robots.txt與標籤
【資料來源:http://www.ithome.com.tw/itadm/article.php?c=35591】
搜尋引擎的網路蜘蛛看似無孔不入,但它其實也是知所進退,有它的運作禮貌。設定適當的robots.txt與 ,對於網站和搜尋引擎溝通相當大的幫助 |
- Nov 28 Wed 2007 20:33
轉載:網路世界的爬蟲類
【資料來源:http://www.ithome.com.tw/itadm/article.php?c=46312】
作者:蔡學鏞-專職作家
清華大學資訊工程碩士,曾任華碩集團軟體工程師、元智大學資訊系講師、美商歐萊禮出版社技術編輯、臺灣微軟特約專欄作家。
爬蟲類程式能為你做什麼?你可以利用它取得股票資訊;設計搜尋引擎;進行幾個購物網站的比價。Bot也可以幫助你提升文章點擊率,進入熱門排行榜。 |
- Nov 24 Sat 2007 18:25
轉載:PHP 生成靜態html文件
【資料來源:http://www.wujianrong.com/archives/2006/10/php_html.html】
總結有如下三種方法
1,下面使用模版的一個方法!
<?php
$fp = fopen ("templets.html","a");
if ($fp){
$fup = fread ($fp,filesize("templets.html"));
$fp2 = fopen ("html.shtml","w");
if ($fwrite ($fp2,$fup)){
$fclose ($fp);
$fcolse ($fp2);
die ("寫入模板成功");
} else {
fclose ($fp);
die ("寫入模板失敗!");
}
}
?>
簡單的將模板寫進一個文件中存為html.html