ASP.NET Samples
---------------
1 ASP.NET Sample Files Purpose
2 How to Run ASP.NET Samples


1 ASP.NET Sample Files Purpose
-------------------------------
    Note:
        1. The pages in directory OLEDB uses OLEDB Provider,
        2. The pages in directory ODBC uses ODBC Provider,
        3. <DBMaker> is the DBMaker installation directory

    Sample1: 
        <DBMaker>\Samples\ASP.NET\OLEDB\basicOperation.aspx

    Purpose:
        This sample demostrates Ordinary Data manipulation .
        1. Connect To Database
        2. Create Table
        3. Insert Data
        4. Update Data 
        5. Delete Data
        6. Drop table    

    Sample2: 
        <DBMaker>\Samples\ASP.NET\OLEDB\selectBlob.aspx

    Purpose:
        This sample demostrates select Large Data manipulation .
        1. Connect To Database
        2. Select large data according to user's choice

    Sample3: 
        <DBMaker>\Samples\ASP.NET\OLEDB\insertBlob1.aspx

    Purpose:
        This sample demostrates insert text into large field.

    Sample4: 
        <DBMaker>\Samples\ASP.NET\OLEDB\insertBlob2.aspx

    Purpose:
        This sample demostrates insert client file into large field.


2 How to Run ASP.NET Samples
-----------------------------
    Steps:
        1. Install IIS(Microsoft Internet Information Service).
           Configure server extension for your web site.

        2. Install .NET Framework. If IIS was installed after installing .NET Framework,
           you should run following command in command line to modify ASP.NET scirpt mapping:
           Aspnet_regiis -i

        3. Create virtual directory (e.g. asp_net) in your web site, ensure this virtual
           directory point to the real directory including asp.net pages.

        4. Start the 'DBSAMPLE5' database in client-server mode.

        5. Launch a browser and locate to the sample URL address. For
           example, 'http://127.0.0.1/asp_net/index.html'

