Date: February 4th, 2010
Cate: JS, 解決小問題

IE 6.0 支援 PNG (jQuery Base)

IE 6跑PNG

...... Reading More
Date: February 4th, 2010
Cate: CSS, Referance

CSS系統字參考

odcdesign---( Verdana, Geneva, sans-serif )
odcdesign---( Verdana, Geneva, sans-serif )
...... Reading More
Date: December 28th, 2009
Cate: JS

CKEditor 的 ToolBar 的快速設定

CKEditor 真是好用
快速設定法:
<script type=”text/javascript”>
    CKEDITOR.config.toolbar_XXXXX =
    [
        ['NewPage', 'Preview'],
        ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Scayt'],
        ['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
        ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'],
        ‘/’,
        ['Styles', 'Format'],
        ['Bold', 'Italic', 'Strike'],
        ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
        ['Link', 'Unlink', 'Anchor'],
        ['Maximize', '-', 'About']
    ];
     CKEDITOR.replace(‘Content_3′,
    {
        toolbar: ‘XXXXX’
    [...]

...... Reading More
Date: December 28th, 2009
Cate: ASP.NET

ASP.NET 直接寫出檔案, 並該使用者跳出下載對話框

Response.AppendHeader(“Content-Disposition”, “attachment; filename=” & Server.UrlPathEncode(Filename))
Response.TransmitFile(PathAndFilename)
Filename 記得要用 UrlPathEncode.
附註寫出直接寫出圖檔的方式, 沒測試過, 有空再來試試. 其中 bmp 是 BMP 物件.
Response.ContentType = “image/jpeg”;
Response.AppendHeader(“Content-Disposition”,“attachment; filename=LeftCorner.jpg”);
 
bmp.Save(Response.OutputStream, ImageFormat.Jpeg);
參考網站 http://www.west-wind.com/weblog/posts/76293.aspx

...... Reading More
Date: December 18th, 2009
Cate: ASP.NET, Tip

ASP.NET Constant

以前用PHP常數大部份都會訂一頁專門存變數
換到ASP.NET就把我搞的一頭霧水

...... Reading More
Date: December 16th, 2009
Cate: JS, 解決小問題

IE & Firefox getYear() 共用Function

Firefox 和 IE Date物件的 getYear的定義不同
Firefox取得會比IE少1900

...... Reading More
Date: December 12th, 2009
Cate: Wordpress

WordPress 內建摘要

打開你的 wp-content\themes\你的樣表(通常剛安裝好是default)\index.php
你會找到 以下的程式碼

...... Reading More
Date: December 10th, 2009
Cate: Uncategorized

刪除 Postfix Queue 中的資料 – 電子報發送時的問題處理

刪除 Postfix Queue 中的資料

...... Reading More
Date: December 8th, 2009
Cate: ASP.NET, IIS, 主機

在 Windows 2008 上面案裝 ASP.NET 1.1 的 Web Application

關閉 UAC:
http://pcuser.pixnet.net/blog/post/17368385
http://social.technet.microsoft.com/Forums/zh-TW/vistazhcht/thread/927049e5-2df6-459d-aa8f-2917138fb8a3

...... Reading More