Output table to asp file : Table Output « Access « VBA / Excel / Access / Word






Output table to asp file

 
Sub OutputToASP()
    DoCmd.OutputTo acOutputTable, "tblComplaints", acFormatASP, "c:\t.asp"
End Sub

 

Related examples in the same category

1.Export table to html file