<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[嚼的絮絮叨叨:: 痞客邦 PIXNET ::]]></title>
    <link>http://ikaritw.pixnet.net/blog</link>
    <description><![CDATA[<BR>死生契闊，與子成說。執子之手，與子偕老《詩經‧邶風‧擊鼓》
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-649513-3";
urchinTracker();
</script>]]></description>
    <pubDate>Fri, 31 Jul 2009 06:39:46 +0000</pubDate>
    <managingEditor>ikaritw@not-valid.com (ikaritw)</managingEditor>
    <copyright>Copyright 2003-2009 ikaritw,Pixnet Digital Media Coporation. All rights reserved.</copyright>
    <generator>PIXNET Media Digital Coporation</generator>
    <language>zh</language>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[上下傳RichTextBox中的資料]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/24761187</link>
      <guid>http://ikaritw.pixnet.net/blog/post/24761187</guid>
      <description><![CDATA[簡化的寫法
找到的資料都是先將richtextbox先暫存為temp.rtf檔案，然後再用FileStream的方式載入成資料流。
如果可以直接將richtextbox的文字直將轉成資料流，就不用存成暫存檔了吧。
轉成二進位的方式，也可以保留其中的文字格式、圖片檔等等。
&nbsp;

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;private void SaveRichTextBox(string text)
&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{]]></description>
      <content:encoded><![CDATA[<p>簡化的寫法</p>
<p>找到的資料都是先將richtextbox先暫存為temp.rtf檔案，然後再用FileStream的方式載入成資料流。</p>
<p>如果可以直接將richtextbox的文字直將轉成資料流，就不用存成暫存檔了吧。</p>
<p>轉成二進位的方式，也可以保留其中的文字格式、圖片檔等等。</p>
<p>&nbsp;</p>
<p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;private void SaveRichTextBox(string text)</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/24761187">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Fri, 31 Jul 2009 06:39:46 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/24761187#comments</comments>
    </item>
    <item>
      <title><![CDATA[C#之XOR版加解密]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/24630652</link>
      <guid>http://ikaritw.pixnet.net/blog/post/24630652</guid>
      <description><![CDATA[using Microsoft.Win32;
&nbsp;
//加密
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private string Encrypt(string Org,string key)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string res = "";
&nbsp;]]></description>
      <content:encoded><![CDATA[<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"><span style="FONT-FAMILY: Arial; COLOR: blue; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US">using</span><span style="FONT-FAMILY: Arial; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US"> Microsoft.Win32;</span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none">&nbsp;</p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"><span style="FONT-FAMILY: Arial; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US">//加密</span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"><span style="FONT-FAMILY: Arial; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US"><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="COLOR: blue">private</span> <span style="COLOR: blue">string</span> Encrypt(<span style="COLOR: blue">string</span> Org,<span style="COLOR: blue">string</span> key)</span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"><span style="FONT-FAMILY: Arial; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US"><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>{</span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"><span style="FONT-FAMILY: Arial; FONT-SIZE: 9pt; mso-font-kerning: 0pt; mso-no-proof: yes" lang="EN-US"><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="COLOR: blue">string</span> res = <span style="COLOR: #a31515">""</span>;</span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none">&nbsp;</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/24630652">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Tue, 14 Jul 2009 19:33:08 +0000</pubDate>
      <category>ㄝㄟㄙㄆ</category>
      <comments>http://ikaritw.pixnet.net/blog/post/24630652#comments</comments>
    </item>
    <item>
      <title><![CDATA[C# 巴都萬數列]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/24268420</link>
      <guid>http://ikaritw.pixnet.net/blog/post/24268420</guid>
      <description><![CDATA[另場加開&nbsp;巴都萬數列
&nbsp;
由起始數值P0 = P1 = P2 = 1和遞歸關係Pn = Pn - 2 + Pn - 3定義。
首數個值為1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16, 21, 28, 37 ..
&nbsp;


using System;
using System.Collections.Generic;]]></description>
      <content:encoded><![CDATA[<p>另場加開&nbsp;<a href="http://zh.wikipedia.org/w/index.php?title=巴都萬數列&amp;variant=zh-tw" target="_blank">巴都萬數列</a></p>
<p>&nbsp;</p>
<p>由起始數值P0 = P1 = P2 = 1和遞歸關係Pn = Pn - 2 + Pn - 3定義。</p>
<p>首數個值為1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16, 21, 28, 37 ..</p>
<p><img title="巴都萬數列.JPG" src="http://pic.pimg.tw/ikaritw/4a2956dad7bd5.jpg" border="0" alt="巴都萬數列.JPG" />&nbsp;</p>
<p>
<hr />
<p>using System;</p>
<p>using System.Collections.Generic;</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/24268420">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Fri, 05 Jun 2009 17:31:00 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/24268420#comments</comments>
    </item>
    <item>
      <title><![CDATA[C# 費氏數列（Fibonacci Sequence）]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/24268069</link>
      <guid>http://ikaritw.pixnet.net/blog/post/24268069</guid>
      <description><![CDATA[費氏函數
列印如下的數列。
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946,..............n
公式為

a1&nbsp;= 1
a2&nbsp;= 1
an&nbsp;=&nbsp;an&nbsp;&minus; 1&nbsp;+&nbsp;an&nbsp;&minus; 2

C#的解法通常有陣列跟遞迴。當n越大，陣列的速度遠超過遞迴。而陣列也不過用了array[2]跟1個暫存變數。
&nbsp;
&nbsp;]]></description>
      <content:encoded><![CDATA[<p><a href="http://zh.wikipedia.org/w/index.php?title=斐波那契数列&amp;variant=zh-tw" target="_blank">費氏函數</a></p>
<p>列印如下的數列。</p>
<p>0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946,..............n</p>
<p>公式為</p>
<ul>
<li><span class="texhtml"><em>a</em><sub>1</sub>&nbsp;= 1</span></li>
<li><span class="texhtml"><em>a</em><sub>2</sub>&nbsp;= 1</span></li>
<li><span class="texhtml"><em>a</em><sub><em>n</em></sub>&nbsp;=&nbsp;<em>a</em><sub><em>n</em>&nbsp;&minus; 1</sub>&nbsp;+&nbsp;<em>a</em><sub><em>n</em>&nbsp;&minus; 2</sub></span></li>
</ul>
<p><span>C#的解法通常有陣列跟遞迴。當n越大，陣列的速度遠超過遞迴。而陣列也不過用了array[2]跟1個暫存變數。</span></p>
<p><img title="CWINDOWSsystem32cmd.exe 200966 上午 011814.JPG" src="http://pic.pimg.tw/ikaritw/4a2953e3249c6.jpg" border="0" alt="CWINDOWSsystem32cmd.exe 200966 上午 011814.JPG" />&nbsp;</p>
<p>&nbsp;</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/24268069">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Fri, 05 Jun 2009 17:08:24 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/24268069#comments</comments>
    </item>
    <item>
      <title><![CDATA[DateTimePicker中使用民國年]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/24217115</link>
      <guid>http://ikaritw.pixnet.net/blog/post/24217115</guid>
      <description><![CDATA[&nbsp;

dtp_SDate.Format = DateTimePickerFormat.Custom;
dtp_SDate.CustomFormat = string.Format("{0}/MM/dd", dtp_SDate.Value.AddYears(-1911).Year.ToString("00"));//年份用自定的方式轉成民國年
網路上的作法大都是用win32的API功能，
在程式開啟時，把用戶端的時間格式改成民國。]]></description>
      <content:encoded><![CDATA[<p>&nbsp;</p>
<p><a href="http://www.flickr.com/photos/ikaritw/3591205269/" target="_blank"><img src="http://farm4.static.flickr.com/3308/3591205269_d895d01a94.jpg" alt="Datetimepicker" width="274" height="167" /></a></p>
<p>dtp_SDate.Format = DateTimePickerFormat.Custom;</p>
<p>dtp_SDate.CustomFormat = string.Format("{0}/MM/dd", dtp_SDate.Value.AddYears(-1911).Year.ToString("00"));<br />//年份用自定的方式轉成民國年</p>
<p><a href="http://minying.wordpress.com/2009/04/22/datetimepicker-顯示民國年/">網路上的作法大都是用win32的API功能</a>，</p>
<p>在程式開啟時，把用戶端的時間格式改成民國。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/24217115">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Wed, 03 Jun 2009 08:58:35 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/24217115#comments</comments>
    </item>
    <item>
      <title><![CDATA[insert圖檔至MS Sql]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/23475839</link>
      <guid>http://ikaritw.pixnet.net/blog/post/23475839</guid>
      <description><![CDATA[把FileUpload的檔案(圖檔)上傳至MS Sql中，然後從資料庫讀出後，利用ashx的泛型處理轉成二進位位元組，呈現在GridView中。
&nbsp;

建置：
Create Table UploadImg(
id int identity(1,1),
images image null
)]]></description>
      <content:encoded><![CDATA[<p>把FileUpload的檔案(圖檔)上傳至MS Sql中，然後從資料庫讀出後，利用ashx的泛型處理轉成二進位位元組，呈現在GridView中。</p>
<p>&nbsp;</p>
<hr />
<p>建置：</p>
<p>Create Table UploadImg(</p>
<p>id int identity(1,1),</p>
<p>images image null</p>
<p>)</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/23475839">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sun, 22 Mar 2009 18:07:07 +0000</pubDate>
      <category>ㄝㄟㄙㄆ</category>
      <comments>http://ikaritw.pixnet.net/blog/post/23475839#comments</comments>
    </item>
    <item>
      <title><![CDATA[使用者控制項：可複選的日期控制項 on ASP.net C#]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/23406512</link>
      <guid>http://ikaritw.pixnet.net/blog/post/23406512</guid>
      <description><![CDATA[&nbsp;&nbsp;&nbsp;
一、新增使用者控制項。
二、處理程式：
三、如要從物件的SelectDates取出日期陣列，要在PagePrerender中取，因為這時候使用者控制項才會有完整的值。
&nbsp;
&nbsp;

&lt;%@
Control Language="C#"
ClassName="CalendarS"
%&gt;]]></description>
      <content:encoded><![CDATA[<p><img title="CalendarS" src="http://pic.pimg.tw/ikaritw/49bbfa796c824.jpg" border="0" alt="CalendarS" />&nbsp;&nbsp;<img title="CalendarS2" src="http://pic.pimg.tw/ikaritw/49bbfa93b1013.jpg" border="0" alt="CalendarS2" />&nbsp;</p>
<p>一、新增使用者控制項。</p>
<p>二、處理程式：</p>
<p>三、如要從物件的SelectDates取出日期陣列，要在PagePrerender中取，因為這時候使用者控制項才會有完整的值。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<hr />
<p class="MsoNormal" style="text-autospace: none"><span style="font-size: 10.0pt; font-family: Arial; background: yellow" lang="EN-US">&lt;%</span><span style="font-size: 10.0pt; font-family: Arial; color: blue" lang="EN-US">@</span><span style="font-size: 10.0pt; font-family: Arial" lang="EN-US">
<span style="color:maroon">Control</span> <span style="color:red">Language</span><span style="color:blue">="C#"</span>
<span style="color:red">ClassName</span><span style="color:blue">="CalendarS"</span>
<span style="background: yellow">%&gt;</span></span></p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/23406512">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sat, 14 Mar 2009 18:40:07 +0000</pubDate>
      <category>ㄝㄟㄙㄆ</category>
      <comments>http://ikaritw.pixnet.net/blog/post/23406512#comments</comments>
    </item>
    <item>
      <title><![CDATA[鬼打牆系列：showModalDialog]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/23317918</link>
      <guid>http://ikaritw.pixnet.net/blog/post/23317918</guid>
      <description><![CDATA[今天為了解決掉IE7的網址列的問題，花了一段時間。
在IE7的架構下，如果網站本身沒有加入「信任的網城」的話，會強制出現網址列與狀態列。解決的方式只能請使用者將網站加入信任，不然很多東西都會破功的，所以這只能治標，不能治本。
設定前：
&nbsp;
設定：
&nbsp;
設定後：]]></description>
      <content:encoded><![CDATA[<p>今天為了解決掉IE7的網址列的問題，花了一段時間。</p>
<p>在IE7的架構下，如果網站本身沒有加入「信任的網城」的話，會強制出現網址列與狀態列。解決的方式只能請使用者將網站加入信任，不然很多東西都會破功的，所以這只能治標，不能治本。</p>
<p>設定前：</p>
<p><img title="befor_setSafe" src="http://pic.pimg.tw/ikaritw/49ae3dd6e002b.jpg" border="0" alt="befor_setSafe" />&nbsp;</p>
<p>設定：</p>
<p><img title="setSafe" src="http://pic.pimg.tw/ikaritw/49ae3d7d2826e.jpg" border="0" alt="setSafe" />&nbsp;</p>
<p>設定後：</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/23317918">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Wed, 04 Mar 2009 08:05:16 +0000</pubDate>
      <category>ㄝㄟㄙㄆ</category>
      <comments>http://ikaritw.pixnet.net/blog/post/23317918#comments</comments>
    </item>
    <item>
      <title><![CDATA[腦袋空窗期]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/23264929</link>
      <guid>http://ikaritw.pixnet.net/blog/post/23264929</guid>
      <description><![CDATA[眼睛很想逃離螢幕。手很想離開鍵盤。胡亂的跳著nano中的歌曲，沒有一首可以穩定下來
但案子堆了三個，一個比一個搞怪。是很有趣的案子啊，可是為什麼完全提不起勁呢？
一個月的時間要從vb.net的winform立刻轉投webform，這個還ok。低空略過結案。
一個月的時間要了解vb6的運作然後修改，這個就有點挑戰。目前還在完成最後一個功能。
三個月的時間要把規格好好漓清，把三層式的物件結構弄懂，然後用C#修改成可以運作的系統，這個就有點難度了。
6/13的表單量，做得二二六六，自己看了都感到害怕~~
也許到頭來，才發現自己選擇的路不適合現在的我。現在大概也只是半夜改不完程式在無病呻吟一番。]]></description>
      <content:encoded><![CDATA[<p>眼睛很想逃離螢幕。手很想離開鍵盤。胡亂的跳著nano中的歌曲，沒有一首可以穩定下來</p>
<p>但案子堆了三個，一個比一個搞怪。是很有趣的案子啊，可是為什麼完全提不起勁呢？</p>
<p>一個月的時間要從vb.net的winform立刻轉投webform，這個還ok。低空略過結案。</p>
<p>一個月的時間要了解vb6的運作然後修改，這個就有點挑戰。目前還在完成最後一個功能。</p>
<p>三個月的時間要把規格好好漓清，把三層式的物件結構弄懂，然後用C#修改成可以運作的系統，這個就有點難度了。</p>
<p>6/13的表單量，做得二二六六，自己看了都感到害怕~~</p>
<p>也許到頭來，才發現自己選擇的路不適合現在的我。現在大概也只是半夜改不完程式在無病呻吟一番。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/23264929">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Thu, 26 Feb 2009 18:42:46 +0000</pubDate>
      <category>工作雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/23264929#comments</comments>
    </item>
    <item>
      <title><![CDATA[61x57]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22774345</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22774345</guid>
      <description><![CDATA[long for what.]]></description>
      <content:encoded><![CDATA[<p>long for what.</p><br />  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22774345">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Tue, 30 Dec 2008 18:57:47 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22774345#comments</comments>
    </item>
    <item>
      <title><![CDATA[晚風]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22742176</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22742176</guid>
      <description><![CDATA[今天的夜色不錯，至少不是寒風陣陣。加上圍巾，走在街上到也是一種不錯的享受。
路過師大的二手書店，好奇的下去逛逛。店裡的氣氛不錯，可惜空調弱了點，也許是自己的圍巾讓我感覺有點悶熱。
順手在書架了拿了想買的書，以書的新舊程度，只花了原價的1/4的價錢，相當划算呢。
職業病使然，我想它們該如何管理進貨的書？
網路上可以看到他們的網址，不過附加的賣場設在雅虎跟露天，而且選書的種類也不一定，各分店之間沒有物流，所以只能向單一分店下單。舊書入庫的時候，應該也沒有登記書名吧(書號)，所以資料庫的設計對他們來說應該也派不上用場。如果要導入資料庫，首先店裡的所有書都要上線，這整理起來應該是非當費工時的動作。
以他們現有的ASP網頁上的珍品拍賣，應該就可以應付他們目前的網路市場了吧？
嗯，一想到要把所有的書編進資料庫~~ㄜ&hellip; 算了，好累。二手書店也許不需要有線上查詢的功能吧&hellip;哈！]]></description>
      <content:encoded><![CDATA[<p>今天的夜色不錯，至少不是寒風陣陣。加上圍巾，走在街上到也是一種不錯的享受。</p>
<p>路過師大的二手書店，好奇的下去逛逛。店裡的氣氛不錯，可惜空調弱了點，也許是自己的圍巾讓我感覺有點悶熱。</p>
<p>順手在書架了拿了想買的書，以書的新舊程度，只花了原價的1/4的價錢，相當划算呢。</p>
<p>職業病使然，我想它們該如何管理進貨的書？</p>
<p>網路上可以看到他們的網址，不過附加的賣場設在雅虎跟露天，而且選書的種類也不一定，各分店之間沒有物流，所以只能向單一分店下單。舊書入庫的時候，應該也沒有登記書名吧(書號)，所以資料庫的設計對他們來說應該也派不上用場。如果要導入資料庫，首先店裡的所有書都要上線，這整理起來應該是非當費工時的動作。</p>
<p>以他們現有的ASP網頁上的珍品拍賣，應該就可以應付他們目前的網路市場了吧？</p>
<p>嗯，一想到要把所有的書編進資料庫~~ㄜ&hellip; 算了，好累。二手書店也許不需要有線上查詢的功能吧&hellip;哈！</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22742176">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sat, 27 Dec 2008 15:36:39 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22742176#comments</comments>
    </item>
    <item>
      <title><![CDATA[路線]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22609056</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22609056</guid>
      <description><![CDATA[
亮紅色：每天早上的上班路線，沿忠孝東路西行，在金山南路待轉，然後仁愛路一定會遇到紅燈。接著右轉仁愛，在杭州右轉。
黃色：「7-11」的對面是家「乾洗店」，門口的車位一定會有空位。停好車到對面的7-11買早餐或咖啡，店員知道我要買中熱美都不加。然後過馬路。
藍色：早上散步休息的「地方」。在那裡吃早餐、咖喝啡、看太陽。最近天氣好，看早上的太陽是件頗幸福的事。
綠色：大約接近九點半，過馬路換證件進大樓。
桃紅色：午餐路線，走到大樓的員工餐廳。然後走回大樓睡午覺。提早醒來再走去7-11買中熱美或水。再走去休息的地方曬太陽或發呆。
淺藍色：下午時間到了再走回大樓，跟一樓的警衛有默契的點個樓，上樓。]]></description>
      <content:encoded><![CDATA[<p><img title="中華電路線" src="http://pic.pimg.tw/ikaritw/494140345320c.jpg" border="0" alt="中華電路線"></p>
<p>亮紅色：每天早上的上班路線，沿忠孝東路西行，在金山南路待轉，然後仁愛路一定會遇到紅燈。接著右轉仁愛，在杭州右轉。</p>
<p>黃色：「7-11」的對面是家「乾洗店」，門口的車位一定會有空位。停好車到對面的7-11買早餐或咖啡，店員知道我要買中熱美都不加。然後過馬路。</p>
<p>藍色：早上散步休息的「地方」。在那裡吃早餐、咖喝啡、看太陽。最近天氣好，看早上的太陽是件頗幸福的事。</p>
<p>綠色：大約接近九點半，過馬路換證件進大樓。</p>
<p>桃紅色：午餐路線，走到大樓的員工餐廳。然後走回大樓睡午覺。提早醒來再走去7-11買中熱美或水。再走去休息的地方曬太陽或發呆。</p>
<p>淺藍色：下午時間到了再走回大樓，跟一樓的警衛有默契的點個樓，上樓。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22609056">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Thu, 11 Dec 2008 16:29:14 +0000</pubDate>
      <category>工作雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22609056#comments</comments>
    </item>
    <item>
      <title><![CDATA[窗外]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22600156</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22600156</guid>
      <description><![CDATA[防火巷對窗住著年輕的男孩。有時候會很晚才睡。他有個習慣，在洗澡時會唱歌。這社區不大，隔著防火巷，聲音可以傳得很遠。不過還好他唱得不錯，最近最常聽到的就是海角七號的主題曲。
「當陽光 回到那 飄著雨的國境之南.....」
也許我不該質疑，在唱著這首歌的同時，是否他能感覺到歌詞中的感覺。不過他有他的故事，而我只是剛好在夜裡的某個時分的過客。
大概是有感而發吧，真的有些東西，錯過了才了解，放下了才後悔，有距離才會想念，在回首時終於懂得。然而卻在擁有時忘了包容，緊握著忘了保留空間，咫尺時卻有如天涯，往前望追尋不一定存在的幻影。
影片中，他們的故事似乎還沒說完；在那個太晴朗的天空之下，雖然會覺得這份相遇實在太過勿忙意外，不過人生總是這樣的充滿意外和驚奇啊。而我，就這樣凍結在某一段的時間當中不再流動。
突然想起今天的天空很藍，好像是形容中藍得很可怕的那種，我想起在五分山頂看到的景色。坐不住的我在中午抽空帶著睡意走進陽光底下，對面的國宅是個可以欣賞陽光的好地方。靜靜的，想要思考些什麼，不過思緒好像連貫不起來，斷了什麼一樣。然後在時間結束之前，沿著有陽光灑落的人行道走回工作之中。
喔，我想翹班~在灰壓壓的天空降下來之前跑到雲上，也許那裡的空氣可以讓思緒更清楚一些吧。]]></description>
      <content:encoded><![CDATA[<p>防火巷對窗住著年輕的男孩。有時候會很晚才睡。他有個習慣，在洗澡時會唱歌。這社區不大，隔著防火巷，聲音可以傳得很遠。不過還好他唱得不錯，最近最常聽到的就是海角七號的主題曲。</p>
<p>「當陽光 回到那 飄著雨的國境之南.....」</p>
<p>也許我不該質疑，在唱著這首歌的同時，是否他能感覺到歌詞中的感覺。不過他有他的故事，而我只是剛好在夜裡的某個時分的過客。</p>
<p>大概是有感而發吧，真的有些東西，錯過了才了解，放下了才後悔，有距離才會想念，在回首時終於懂得。然而卻在擁有時忘了包容，緊握著忘了保留空間，咫尺時卻有如天涯，往前望追尋不一定存在的幻影。</p>
<p>影片中，他們的故事似乎還沒說完；在那個太晴朗的天空之下，雖然會覺得這份相遇實在太過勿忙意外，不過人生總是這樣的充滿意外和驚奇啊。而我，就這樣凍結在某一段的時間當中不再流動。</p>
<p>突然想起今天的天空很藍，好像是形容中藍得很可怕的那種，我想起在五分山頂看到的景色。坐不住的我在中午抽空帶著睡意走進陽光底下，對面的國宅是個可以欣賞陽光的好地方。靜靜的，想要思考些什麼，不過思緒好像連貫不起來，斷了什麼一樣。然後在時間結束之前，沿著有陽光灑落的人行道走回工作之中。</p>
<p>喔，我想翹班~在灰壓壓的天空降下來之前跑到雲上，也許那裡的空氣可以讓思緒更清楚一些吧。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22600156">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Wed, 10 Dec 2008 16:37:35 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22600156#comments</comments>
    </item>
    <item>
      <title><![CDATA[Readonly]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22582581</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22582581</guid>
      <description><![CDATA[原來
readonly有這麼神奇卻又除不出錯的功效。
TextBox 
如果把 ReadOnly 屬性設定為 True，透過 JavaScript 設定的值，在 ASP.NET 2.0 
是無法取到值的！&nbsp;
解決之道：

利用&nbsp;Request&nbsp;來取值。
如果非要使用&nbsp;textBox.Text&nbsp;來取值的話，textBox.&nbsp;ReadOnly&nbsp;記的還是設為&nbsp;false&nbsp;。
但是在 
Page_Load，加入 


textBox1.Attributes.Add("ReadOnly", 
"ReadOnly")&nbsp;或
textBox1.Attributes("ReadOnly")= "ReadOnly"&nbsp; 
或
textBox1.Attributes("ReadOnly")= 
"True"

]]></description>
      <content:encoded><![CDATA[<p>原來</p>
<p>readonly有這麼神奇卻又除不出錯的功效。</p>
<p><span class="EC_EC_"><span style="color: #0000ff;">TextBox 
如果把 ReadOnly 屬性設定為 True，透過 JavaScript 設定的值，在 ASP.NET 2.0 
是無法取到值的！</span></span><br />&nbsp;</p>
<p><span class="EC_EC_"><span class="EC_EC_">解決之道：
<ol>
<li>利用<span class="EC_EC_">&nbsp;</span><strong>Request</strong><span class="EC_EC_">&nbsp;</span>來取值。</li>
<li>如果非要使用<span class="EC_EC_">&nbsp;</span><strong>textBox.Text</strong><span class="EC_EC_">&nbsp;</span>來取值的話，textBox.<span class="EC_EC_">&nbsp;</span><strong>ReadOnly</strong><span class="EC_EC_">&nbsp;</span>記的還是設為<span class="EC_EC_">&nbsp;</span><strong><span style="color: #ff0000;">false</span></strong><span class="EC_EC_"><span style="color: #ff0000;">&nbsp;</span></span>。</li>
<li>但是在 
Page_Load，加入 </li>
</ol>
<ul>
<li><span style="color: #ff0000;">textBox1.</span><strong><span style="color: #ff0000;">Attributes.Add("ReadOnly", 
"ReadOnly")</span></strong><span class="EC_EC_"><span style="color: #999999;">&nbsp;</span></span><span style="color: #ff0000;"><span style="color: #999999;">或</span><br /></span></li>
<li><span style="color: #ff0000;">textBox1.</span><strong><span style="color: #ff0000;">Attributes("ReadOnly")= "ReadOnly"&nbsp; 
</span></strong><span style="color: #7e6b5a;"><span style="color: #999999;">或</span></span><span style="color: #ff0000;"><br /></span></li>
<li><span style="color: #7e6b5a;"><span style="color: #ff0000;">textBox1.</span></span><strong><span style="color: #ff0000;">Attributes("ReadOnly")= 
"True"</span></strong></li>
</ul>
</span></span></p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22582581">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Mon, 08 Dec 2008 18:08:48 +0000</pubDate>
      <category>ㄝㄟㄙㄆ</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22582581#comments</comments>
    </item>
    <item>
      <title><![CDATA[戰利品]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22571085</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22571085</guid>
      <description><![CDATA[難得，今天出門沒有帶著工作。
手機、錢包、鑰匙，還有最近的新玩意，雖然明年開始很快就派上不用場了。
每次出門前一定會檢查這三樣東西，沒了這三樣，出了門就會覺得怪怪的。不過理論上，出門其實只需要鑰匙就可以了吧。
去了常去的品牌，試穿了一些襯衫，不過總覺得版型換了。前面看起來還不錯，不過背面在雙肩的部份還有掖下的部份就看起來「啷啷」的(台語發音，意指鬆垮樣)，明明之前穿起來還不會這樣啊。重點在於明明就已經有瘦了，但卻還是不好買衣服呢。
逛到最後唯一購入的只有二個配件，米其色圍巾跟深色銀斜紋窄版領帶。好吧，也算是意外的收獲吧。
(逛街時買的東西都不是原先計劃中的東西，想買的卻都在意外中買到，宿命啊)
&nbsp;]]></description>
      <content:encoded><![CDATA[<p>難得，今天出門沒有帶著工作。</p>
<p>手機、錢包、鑰匙，還有最近的新玩意，雖然明年開始很快就派上不用場了。</p>
<p>每次出門前一定會檢查這三樣東西，沒了這三樣，出了門就會覺得怪怪的。不過理論上，出門其實只需要鑰匙就可以了吧。</p>
<p>去了常去的品牌，試穿了一些襯衫，不過總覺得版型換了。前面看起來還不錯，不過背面在雙肩的部份還有掖下的部份就看起來「啷啷」的(台語發音，意指鬆垮樣)，明明之前穿起來還不會這樣啊。重點在於明明就已經有瘦了，但卻還是不好買衣服呢。</p>
<p>逛到最後唯一購入的只有二個配件，米其色圍巾跟深色銀斜紋窄版領帶。好吧，也算是意外的收獲吧。</p>
<p>(逛街時買的東西都不是原先計劃中的東西，想買的卻都在意外中買到，宿命啊)</p>
<p>&nbsp;</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22571085">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sun, 07 Dec 2008 16:05:50 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22571085#comments</comments>
    </item>
    <item>
      <title><![CDATA[續約]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22505894</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22505894</guid>
      <description><![CDATA[PIXNET發了封續約函過來，好像在11/30過期了。
原先想，如果我繼續擁有Flickr的Pro帳號(聽說也快過期了)還有Picasa的WebAlbum，那這裡的相簿服務其實就是多餘的了。
不過看了一下它們的方案，其中「小而美」方案，一年只要1元新台幣。跟其它的專案比起來。
只差在
&nbsp;



功能一般會員試用方案小而美方案大人物方案頂級方案


相簿容量
200M
+2G
+2G
+7G
+30G


價格
免費
39元起/30 天
299&nbsp;1&nbsp;元起/一年
599元起/一年
899元起/一年
3000元起/一年


廣告








外連
10M
10M
10M
10M
5G
5G



&nbsp;
不過我的外連幾乎是使用Flickr的圖片，這裡大概不會有外連的機會。]]></description>
      <content:encoded><![CDATA[<p>PIXNET發了封續約函過來，好像在11/30過期了。</p>
<p>原先想，如果我繼續擁有Flickr的Pro帳號(聽說也快過期了)還有Picasa的WebAlbum，那這裡的相簿服務其實就是多餘的了。</p>
<p>不過看了一下它們的方案，其中「小而美」方案，一年只要1元新台幣。跟其它的專案比起來。</p>
<p>只差在</p>
<p>&nbsp;</p>
<table id="compare" border="1">
<tbody>
<tr>
<th>功能</th><th class="type1">一般會員</th><th class="type2">試用方案</th><th class="type3"><span style="color: #ff0000;">小而美方案</span></th><th class="type4" colspan="2">大人物方案</th><th class="type5">頂級方案</th>
</tr>
<tr>
<td class="function">相簿容量</td>
<td class="type01">200M</td>
<td class="type02">+2G</td>
<td class="type03"><span style="color: #ff0000;">+2G</span></td>
<td class="type04" colspan="2">+7G</td>
<td class="type05">+30G</td>
</tr>
<tr>
<td class="function">價格</td>
<td class="type01">免費</td>
<td class="type02">39元起/30 天</td>
<td class="type03"><span style="text-decoration: line-through;"><span style="color: #ff0000;">299</span></span><span style="color: #ff0000;">&nbsp;1&nbsp;元起/一年</span></td>
<td class="type04">599元起/一年</td>
<td class="type04">899元起/一年</td>
<td class="type05">3000元起/一年</td>
</tr>
<tr>
<td class="function">廣告</td>
<td class="type01"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table1-1.gif" alt=""></td>
<td class="type02"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table2-1.gif" alt=""></td>
<td class="type03"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table3-1.gif" alt=""></td>
<td class="type04"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table4-1.gif" alt=""></td>
<td class="type04"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table4-2.gif" alt=""></td>
<td class="type05"><img src="https://s.pixfs.net/bill.pixnet.tw/image/table/18-table5-2.gif" alt=""></td>
</tr>
<tr>
<td>外連</td>
<td>10M</td>
<td>10M</td>
<td>10M</td>
<td>10M</td>
<td>5G</td>
<td>5G</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>不過我的外連幾乎是使用Flickr的圖片，這裡大概不會有外連的機會。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22505894">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sun, 30 Nov 2008 16:30:09 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22505894#comments</comments>
    </item>
    <item>
      <title><![CDATA[聊天]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22498095</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22498095</guid>
      <description><![CDATA[
不批評
不執著
苦的背後總有不苦的事
相信世界充滿美好

這是認識十年的朋友告訴我的，想要快樂人生就要以這個為目標啊。我得承認，光是第一項我就無法跨越了，更何況是二、三、四項。
所以，塞翁失馬，焉知非福。得承認成語真的很好用啊，就像「因噎廢食」一樣的好用啊！]]></description>
      <content:encoded><![CDATA[<ol>
<li>不批評</li>
<li>不執著</li>
<li>苦的背後總有不苦的事</li>
<li>相信世界充滿美好</li>
</ol>
<p>這是認識十年的朋友告訴我的，想要快樂人生就要以這個為目標啊。我得承認，光是第一項我就無法跨越了，更何況是二、三、四項。</p>
<p>所以，塞翁失馬，焉知非福。得承認成語真的很好用啊，就像「因噎廢食」一樣的好用啊！</p><br />  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22498095">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Sat, 29 Nov 2008 18:12:20 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22498095#comments</comments>
    </item>
    <item>
      <title><![CDATA[三個月]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/22491465</link>
      <guid>http://ikaritw.pixnet.net/blog/post/22491465</guid>
      <description><![CDATA[唉&hellip;三個月快到了，做為一個小小的程式設計師的日子就快滿一季了。
計劃中的行程，沒幾件 on&nbsp;Schedule。
折疊車放在房間中，我爸問怎麼保養得那麼好。白析析。
ASP.net 控制AD，一整個人仰馬翻，結果是零零散散。
我在VB.net的DataGridView上找不到Databound事件，被ASP.net洗腦了，可我專題寫得是AP端啊。
外表風光鮮麗，背後暗自啜泣。我覺得 You`ll see中的「Every detail of this damning life」活生生的發生在自己身上。「我背後柔軟的傷口　不想讓人觸摸&nbsp;但在你轉身瞬間，淚在心底成了河流」
以前到家開機就會開MSN，現在開機只會掛離線，或開skype。下班勿擾。最多時候是開機聽itunes，放著MSN收來的音樂反覆品嚐。One more time, One more chance是摧淚聖品。]]></description>
      <content:encoded><![CDATA[<p>唉&hellip;三個月快到了，做為一個小小的程式設計師的日子就快滿一季了。</p>
<p>計劃中的行程，沒幾件 on&nbsp;Schedule。</p>
<p>折疊車放在房間中，我爸問怎麼保養得那麼好。白析析。</p>
<p>ASP.net 控制AD，一整個人仰馬翻，結果是零零散散。</p>
<p>我在VB.net的DataGridView上找不到Databound事件，被ASP.net洗腦了，可我專題寫得是AP端啊。</p>
<p>外表風光鮮麗，背後暗自啜泣。我覺得 You`ll see中的「Every detail of this damning life」活生生的發生在自己身上。<img src="http://s.pixfs.net/f.pixnet.net/images/emotions/041.gif" border="0" alt="">「我背後柔軟的傷口　不想讓人觸摸&nbsp;但在你轉身瞬間，淚在心底成了河流」</p>
<p>以前到家開機就會開MSN，現在開機只會掛離線，或開skype。下班勿擾。最多時候是開機聽itunes，放著MSN收來的音樂反覆品嚐。One more time, One more chance是摧淚聖品。</p>  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/22491465">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Fri, 28 Nov 2008 17:54:51 +0000</pubDate>
      <category>生活雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/22491465#comments</comments>
    </item>
    <item>
      <title><![CDATA[Apache跑ASP]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/20750060</link>
      <guid>http://ikaritw.pixnet.net/blog/post/20750060</guid>
      <description><![CDATA[一、安裝AppServ 我裝2.6.0二、安裝mod_aspdotnet 2.2.0三、加入設定：在：C:\AppServ\Apache2.2\conf\httpd.conf內，加入以下設定LoadModule aspdotnet_module modules/mod_aspdotnet.soAddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj \]]></description>
      <content:encoded><![CDATA[一、安裝AppServ 我裝2.6.0<br />二、安裝<a href="http://sourceforge.net/projects/mod-aspdotnet" target="_blank">mod_aspdotnet</a> 2.2.0<br />三、加入設定：<br /><strong>在：C:\AppServ\Apache2.2\conf\httpd.conf內，加入以下設定</strong><br /><blockquote>LoadModule aspdotnet_module modules/mod_aspdotnet.so<br /><br />AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj \<br />  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/20750060">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Thu, 31 Jul 2008 18:09:04 +0000</pubDate>
      <category>No Category</category>
      <comments>http://ikaritw.pixnet.net/blog/post/20750060#comments</comments>
    </item>
    <item>
      <title><![CDATA[穿過WL500G，設定MsSQL Server Express]]></title>
      <link>http://ikaritw.pixnet.net/blog/post/18607893</link>
      <guid>http://ikaritw.pixnet.net/blog/post/18607893</guid>
      <description><![CDATA[0、在OS的防火牆，設定指定固定Port的例外。1、在組態管理員，啟動執行個體的Tcp/Ip及NamePipes，在Tcp/IP中指定固定Port，會要求重啟執行個體2、在SSMS，啟動執行個體的混合驗證模式，會要求重啟執行個體3、執行個體\安全性\登入.新增登入，設定新帳號，密碼，給予權限4、執行個體\安全性\登入\&quot;帳號&quot;.屬性\狀態，啟動5、進入WL500G定畫面，NAT Setting\Virtual Server\，新增設定，會要求重啟WL500G]]></description>
      <content:encoded><![CDATA[0、在OS的防火牆，設定<strong>指定固定Port</strong>的例外。<br />1、在組態管理員，啟動執行個體的Tcp/Ip及NamePipes，在Tcp/IP中<strong>指定固定Port</strong>，會要求重啟執行個體<br />2、在SSMS，啟動執行個體的混合驗證模式，會要求重啟執行個體<br />3、執行個體\安全性\登入.新增登入，設定新帳號，密碼，給予權限<br />4、執行個體\安全性\登入\&quot;帳號&quot;.屬性\狀態，啟動<br />5、進入WL500G定畫面，NAT Setting\Virtual Server\，新增設定，會要求重啟WL500G<br /><img src="http://farm4.static.flickr.com/3098/2568357174_2e4f25e689.jpg?v=0" /><br />  <div class="more"><a href="http://ikaritw.pixnet.net/blog/post/18607893">(Read More...)</a></div>]]></content:encoded>
      <pubDate>Tue, 10 Jun 2008 17:24:04 +0000</pubDate>
      <category>資訊雜記</category>
      <comments>http://ikaritw.pixnet.net/blog/post/18607893#comments</comments>
    </item>
  </channel>
</rss>
