A
ash
i use the following code to read excel
Set ExcelConn = Server.CreateObject("ADODB.Connection")
Set ExcelRS = Server.CreateObject("ADODB.Recordset")
......
sSQL = "SELECT * FROM [Sheet1$]"
set ExcelRS = ExcelConn.Execute(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.CreateObject("ADODB.Connection")
Set ExcelRS = Server.CreateObject("ADODB.Recordset")
......
sSQL = "SELECT * FROM [Sheet1$]"
set ExcelRS = ExcelConn.Execute(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