D
David Lozzi
Howdy,
I need to export some data to tab delimited text file. I was hoping to
simply convert my datagrid to it, but I can't seem to figure out how. Here's
what I got in the page header.
Response.ContentType = "text/plain"
Response.AddHeader("Content-Disposition",
"attachment;filename=invoice.txt")
This does create a downloaded text file and the contents is the HTML of the
completed page. Any ideas? If not, then I'm going to have to build it like
str = "Customer" & vbTab & "Address" & vbTab & "and so on...."
Thanks!!
David Lozzi
I need to export some data to tab delimited text file. I was hoping to
simply convert my datagrid to it, but I can't seem to figure out how. Here's
what I got in the page header.
Response.ContentType = "text/plain"
Response.AddHeader("Content-Disposition",
"attachment;filename=invoice.txt")
This does create a downloaded text file and the contents is the HTML of the
completed page. Any ideas? If not, then I'm going to have to build it like
str = "Customer" & vbTab & "Address" & vbTab & "and so on...."
Thanks!!
David Lozzi