web 2.0

How to use ASP & Connect Excel Using ADO (DRIVER={Microsoft Excel Driver (*.xls)})

How to use ASP & Connect Excel Using ADO (DRIVER={Microsoft Excel Driver (*.xls)}) This is learn/tutorial asp developers how to using ASP script Connect Excel ADO Driver.

ShotDev Focus:
- ASP & Connect Excel ADO Driver.

ASP & Connect Excel ADO Driver.

Example

asp_excel_ado.asp

  1. <%Option Explicit%>  
  2. <html>  
  3. <head>  
  4. <title>ShotDev.Com Tutorial</title>  
  5. </head>  
  6. <body>  
  7. <%  
  8. Dim OpenFile,i  
  9. Dim Conn,objRec,strSQL  
  10.   
  11. OpenFile = "MyXls/MyExcelDB.xls"  
  12. Set Conn = Server.CreateObject("ADODB.Connection")  
  13.   
  14. '*** Connect to Excel ***'  
  15. Conn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; "&_  
  16. "Excel 8.0; DBQ=" & Server.MapPath(OpenFile) & "; "  
  17.   
  18. '*** Select Sheet ***'  
  19. strSQL = "SELECT * FROM [Sheet1$]"  
  20. Set objRec = Conn.Execute(strSQL)  
  21. %>  
  22. <table width="420" border="1">  
  23. <tr>  
  24. <td>CustomerID</td>  
  25. <td>Name</td>  
  26. <td>Email</td>  
  27. <td>CountryCode</td>  
  28. <td>Budget</td>  
  29. <td>Used</td>  
  30. </tr>  
  31. <%  
  32. While Not objRec.EOF  
  33. %>  
  34. <tr>  
  35. <td><%=objRec.Fields("CustomerID").Value%></td> <!-- objRec.Fields(0).Value or objRec.Fields("CustomerID").Value -->  
  36. <td><%=objRec.Fields("Name").Value%></td>  
  37. <td><%=objRec.Fields("Email").Value%></td>  
  38. <td><%=objRec.Fields("CountryCode").Value%></td>  
  39. <td><%=objRec.Fields("Budget").Value%></td>  
  40. <td><%=objRec.Fields("Used").Value%></td>  
  41. </tr>  
  42. <%  
  43. objRec.MoveNext  
  44. Wend  
  45. %>  
  46. </table>  
  47. <%  
  48. objRec.Close  
  49. Conn.Close  
  50. Set objRec=Nothing  
  51. Set Conn=Nothing  
  52. %>  
  53. </body>  
  54. </html>  

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_excel_ado.asp

Screenshot

ASP & Connect Excel ADO Driver.
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

One Response to “How to use ASP & Connect Excel Using ADO (DRIVER={Microsoft Excel Driver (*.xls)})”

  1. 3callous…

Leave a Reply

You must be logged in to post a comment.