Ed Kautz wrote:
> I can import a comma delimted file into Access using 'Get
> External Data' and the wizard and it creates the table
> using the first record delimted data as the table field
> names, then populates the table.
>
> Is this possible to do using ASP? If so, how would I go
> about it?
As Bob said: don't instantiate an Access object on the server.

you can use fso/readline to get a record from the text file. then use
split(rowtext,delimiter) to build an array. Then populate your table using
SQL in the normal fashion.

--
William Tasso - [url]http://WilliamTasso.com[/url]