什麼是 AJAX 程式庫 API?
http://code.google.com/intl/zh-TW/apis/ajaxlibs/

Develop Guide
http://code.google.com/intl/zh-TW/apis/ajaxlibs/documentation/index.html

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(83)

虛擬光碟
Virtual Clonedrive 5.4.1.1
http://static.slysoft.com/SetupVirtualCloneDrive.exe

燒錄軟體

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(419)

以下內容大部分取自MSDN
ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.cht/fxref_mscorlib/html/8cf32466-55b9-e0bf-37eb-39af84aa3021.htm

IEnumerator 是所有非泛型列舉值的基底介面。

任何實做此類別的物件才能使用foreach來列舉,列舉值可以用來讀取集合中的資料,但是無法用來修改基礎集合。

Posted by give at 痞客邦 PIXNET Comments(1) Trackback(0) Hits(180)

本文引用自 ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.cht/fxref_mscorlib/html/bc3d7d70-886c-6572-18cd-3e82f6aeeabe.htm

Attribute 類別會將預先定義的系統資訊或使用者定義的自訂資訊,與目標項目產生關聯。目標項目可為組件 (Assembly)、類別、建構函式 (Constructor)、委派 (Delegate)、列舉、事件、欄位、介面、方法、可移植執行檔案模組、參數、屬性 (Property)、傳回值、結構或其他屬性 (Attribute)

屬性提供的資訊也稱為中繼資料 (Metadata)應用程式可在執行階段檢查中繼資料,來控制程式處理資料的方式,也可以在執行階段前,利用外部工具,來控制應用程式如何對其本身進行處理或維護(補充1)。例如,.NET Framework 可預先定義並使用屬性型別來控制執行階段行為,部分程式語言則可使用屬性 (Attribute) 型別,來表示 .NET Framework 一般型別系統未直接支援的語言功能。

Posted by give at 痞客邦 PIXNET Comments(1) Trackback(0) Hits(260)

在網頁上呼叫 DataBind
方法時,資料繫結運算式便會在伺服控制項屬性和資料來源之間建立繫結。您可以將資料繫結運算式包含在伺服器控制項開頭標記中屬性/值配組中值的那一端,或是網頁上的任何位置。

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(262)

  1. 下載Log4Net
    http://logging.apache.org/log4net/download.html
  2. 解開,在專案中加入參考
  3. 設定好config.xml (範例可google一下)
  4. 加入
    using log4net;
    using log4net.Config
  5. 取得config.xml,類似以下範例
    XmlConfigurator.Configure(new System.IO.FileInfo(Server.MapPath("config.xml")));
  6. 宣告 (ClassName替換成使用中的Class)

Posted by give at 痞客邦 PIXNET Comments(1) Trackback(0) Hits(549)

1.獲取和設置當前目錄的完全限定路徑。

string str = System.Environment.CurrentDirectory;

Result: C:\xxx\xxx

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(231)

<asp:GridView ID="gvResult2" runat="server" CssClass="table-view"
    DataKeyNames="MetadataId" DataSourceID="ObjectDataSource1">
    <RowStyle CssClass="row-item" />
    <Columns>
        <asp:TemplateField>

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(243)

時間字串的資料如下:
2008/10/21 下午 06:01:39

現在要透過c#將資料寫回oracle內,若直接使用

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(319)

在<system.web>中加上以下參數
<webServices>
      <protocols>
        <add name="HttpPost"/>
        <add name="HttpGet"/>

Posted by give at 痞客邦 PIXNET Comments(0) Trackback(0) Hits(262)