請問 asp 如何以 excel 當作資料庫(編號:3119)

一般書上都是用access作為資料庫
但如何以excel作為資料庫
假設第一頁我設計一些text作為輸入資料用,text的name為t1,t2,t3
接下來第2頁程式碼如下
<%
A1 = request("T1")
 A2 = request("T2")
 A3 = request("T3")
 Set Conn=Server.CreateObject("Adodb.Connection")
 Conn.open "driver={Microsoft Excel Driver (*.xls)};dbq=" & Server.MapPath("book1.xls")
 table = "INSERT INTO [sheet1$]?????
 set rs = conn.execute(table)
%>
請問如何在sheet1中的儲存格中填入資料
例如我要在sheet中的range("B2")中填入a1的值
請大家幫幫忙 謝謝