i use the following code to read excel
Set ExcelConn = Server.CreateOb ject("ADODB.Con nection")
Set ExcelRS = Server.CreateOb ject("ADODB.Rec ordset")
......
sSQL = "SELECT * FROM [Sheet1$]"
set ExcelRS = ExcelConn.Execu te(sSQL)
it work fine for those cell that contained string , but once the cell is numeric, i cant get anything in the cell. How can i solve this problem.
many thx
Set ExcelConn = Server.CreateOb ject("ADODB.Con nection")
Set ExcelRS = Server.CreateOb ject("ADODB.Rec ordset")
......
sSQL = "SELECT * FROM [Sheet1$]"
set ExcelRS = ExcelConn.Execu te(sSQL)
it work fine for those cell that contained string , but once the cell is numeric, i cant get anything in the cell. How can i solve this problem.
many thx
Comment