Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 19th, 2005, 08:45 AM
atse
Guest
 
Posts: n/a
Default export data to Excel

Hi experts,

I retrieve data from the database and display on ASP, then I export these
data to a file, like Excel (the best) or text file. Is it possible? I think
it is possible, but how can I do that? Thanks for any help.

Atse


  #2  
Old July 19th, 2005, 08:45 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel

There are a couple of things you can do.

1. Build your data in a table and add this to the top of your page:
<% Response.ContentType = "application/vnd.ms-excel" %>


2. Build yourself a comma delimited string and save the string to a file
with a .csv file and link to it.

3. Use Office Web Components:
http://office.microsoft.com/downloads/2002/owc10.aspx. Before you'd go that
route, read here though. http://support.microsoft.com/?id=317316

If you need more details on 1 or 2, post back with a sample of your data
querying and what not.

Ray at home


"atse" <dunggaze@yahoo.com> wrote in message
news:7Vnfb.206907$Lnr1.168685@news01.bloor.is.net. cable.rogers.com...[color=blue]
> Hi experts,
>
> I retrieve data from the database and display on ASP, then I export these
> data to a file, like Excel (the best) or text file. Is it possible? I[/color]
think[color=blue]
> it is possible, but how can I do that? Thanks for any help.
>
> Atse
>
>[/color]


  #3  
Old July 19th, 2005, 08:45 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

Thanks Ray. I remember you have given me great helps before. Yes, I really
want to export a csv file.
I have big csv files containing customers' contact info. I want to export
them by zip code and type to respective csv files. What is the simplest way
to do that? Thanks again.

Atse


"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:O6n1R2giDHA.1048@TK2MSFTNGP11.phx.gbl...[color=blue]
> There are a couple of things you can do.
>
> 1. Build your data in a table and add this to the top of your page:
> <% Response.ContentType = "application/vnd.ms-excel" %>
>
>
> 2. Build yourself a comma delimited string and save the string to a file
> with a .csv file and link to it.
>
> 3. Use Office Web Components:
> http://office.microsoft.com/downloads/2002/owc10.aspx. Before you'd go[/color]
that[color=blue]
> route, read here though. http://support.microsoft.com/?id=317316
>
> If you need more details on 1 or 2, post back with a sample of your data
> querying and what not.
>
> Ray at home
>
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:7Vnfb.206907$Lnr1.168685@news01.bloor.is.net. cable.rogers.com...[color=green]
> > Hi experts,
> >
> > I retrieve data from the database and display on ASP, then I export[/color][/color]
these[color=blue][color=green]
> > data to a file, like Excel (the best) or text file. Is it possible? I[/color]
> think[color=green]
> > it is possible, but how can I do that? Thanks for any help.
> >
> > Atse
> >
> >[/color]
>
>[/color]


  #4  
Old July 19th, 2005, 08:45 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel

I will pretend that you have data as such:

CustID Firstname Lastname Address City State ZIP
1 Bo Brady 1 Street Somewhere XX 10001
2 Hope Brady 1 Street Somewhere XX 10001
3 Jack Deveraux 2 Road Somewhere XX 10002
4 Jennifer Deveraux 2 Road Somewhere XX 10002
5 Abe Carver 3 Ave. Somewhere XX 10003
6 Lexie Carver 3 Ave. Somewhere XX 10003
7 Tony Dimera 4 Lane Somewhere XX 10004
8 Rex Dimera 5 Way Somewhere XX 10005
9 Cassie Dimera 4 Lane Somewhere XX 10004
10 Greta Von Amberg 6 Swamp Somewhere XX 10006




So, like, you want a bunch of files like:
10001.csv, 10002.csv, etc.? Maybe something like this:



<object runat="server" progid="Scripting.FileSystemObject"
id="oFSO"></object>
<%

Dim oADO, oRS
Dim sOutput
Dim aZIPs, i, sZIP

Const OUTPUT_PATH = "D:\Path\"


sSQL = "SELECT DISTINCT(ZIP) FROM Customers"
Set oADO = Server.CreateObject("ADODB.Connection")
oADO.Open YourConnectionString
Set oRS = oADO.Execute(sSQL)
aZIPs = oRS.GetRows()
oRS.Close : Set oRS = Nothing

For i = 0 To UBound(aZIPs, 2)
sZIP = aZIPs(0, i)
sSQL = "SELECT CustID,Firstname,Lastname,Address,City,State,ZIP FROM
Customers WHERE ZIP='" & sZIP & "'"
Set oRS = oADO.Execute(sSQL)
sOutput = oRS.GetString(,,",",vbCrLf)
oRS.Close : Set oRS = Nothing
oFSO.CreateTextFile(OUTPUT_PATH & sZIP & ".csv", True).Write sOutput
Response.Write "<a href=""" & sZIP & ".csv"">Click here to download CSV
for ZIP code " & sZIP & "</a><br>"
Next

oADO.Close : Set oADO = Nothing
%>



What that'll do is get all the zips, then loop through them all, query all
the data for each zip, and write a CSV from each resultset.

Ray at home





"atse" <dunggaze@yahoo.com> wrote in message
news:n8pfb.207524$Lnr1.50742@news01.bloor.is.net.c able.rogers.com...[color=blue]
> Thanks Ray. I remember you have given me great helps before. Yes, I really
> want to export a csv file.
> I have big csv files containing customers' contact info. I want to export
> them by zip code and type to respective csv files. What is the simplest[/color]
way[color=blue]
> to do that? Thanks again.
>
> Atse
>
>
> "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
> news:O6n1R2giDHA.1048@TK2MSFTNGP11.phx.gbl...[color=green]
> > There are a couple of things you can do.
> >
> > 1. Build your data in a table and add this to the top of your page:
> > <% Response.ContentType = "application/vnd.ms-excel" %>
> >
> >
> > 2. Build yourself a comma delimited string and save the string to a[/color][/color]
file[color=blue][color=green]
> > with a .csv file and link to it.
> >
> > 3. Use Office Web Components:
> > http://office.microsoft.com/downloads/2002/owc10.aspx. Before you'd go[/color]
> that[color=green]
> > route, read here though. http://support.microsoft.com/?id=317316
> >
> > If you need more details on 1 or 2, post back with a sample of your data
> > querying and what not.
> >
> > Ray at home
> >
> >
> > "atse" <dunggaze@yahoo.com> wrote in message
> > news:7Vnfb.206907$Lnr1.168685@news01.bloor.is.net. cable.rogers.com...[color=darkred]
> > > Hi experts,
> > >
> > > I retrieve data from the database and display on ASP, then I export[/color][/color]
> these[color=green][color=darkred]
> > > data to a file, like Excel (the best) or text file. Is it possible? I[/color]
> > think[color=darkred]
> > > it is possible, but how can I do that? Thanks for any help.
> > >
> > > Atse
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


  #5  
Old July 19th, 2005, 08:45 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

Great! Ray.

You know what I want!! Ok, what if retrieve from a .csv (e.g. customer.csv)
file, instead of the SQL db?
Further questions are:

1. I don't know how many groups of Zip (your example has group10001, group
10002..group 10006. totally 6 groups), and I want to export 6 files, like
10001.csv; ... 10006.csv which means the number of output file .csv would be
a variable.

2. If there is no field name in a .csv file but column/comma/table or A, B,
C...X in an Excel file, how can I select them?

3. Actually I have another field name "language" (eng/fre), I want them to
be exported to files eng_10001.csv, eng_10002.csv, fre_10001.csv,
fre_10003.csv. Is it possible for me to do that. Of course, I am sure you
can.

Thanks again!
Cheers,

Atse


"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:%23%23Mgq1hiDHA.4024@TK2MSFTNGP11.phx.gbl...[color=blue]
> I will pretend that you have data as such:
>
> CustID Firstname Lastname Address City State ZIP
> 1 Bo Brady 1 Street Somewhere XX 10001
> 2 Hope Brady 1 Street Somewhere XX 10001
> 3 Jack Deveraux 2 Road Somewhere XX 10002
> 4 Jennifer Deveraux 2 Road Somewhere XX 10002
> 5 Abe Carver 3 Ave. Somewhere XX 10003
> 6 Lexie Carver 3 Ave. Somewhere XX 10003
> 7 Tony Dimera 4 Lane Somewhere XX 10004
> 8 Rex Dimera 5 Way Somewhere XX 10005
> 9 Cassie Dimera 4 Lane Somewhere XX 10004
> 10 Greta Von Amberg 6 Swamp Somewhere XX 10006
>
>
>
>
> So, like, you want a bunch of files like:
> 10001.csv, 10002.csv, etc.? Maybe something like this:
>
>
>
> <object runat="server" progid="Scripting.FileSystemObject"
> id="oFSO"></object>
> <%
>
> Dim oADO, oRS
> Dim sOutput
> Dim aZIPs, i, sZIP
>
> Const OUTPUT_PATH = "D:\Path\"
>
>
> sSQL = "SELECT DISTINCT(ZIP) FROM Customers"
> Set oADO = Server.CreateObject("ADODB.Connection")
> oADO.Open YourConnectionString
> Set oRS = oADO.Execute(sSQL)
> aZIPs = oRS.GetRows()
> oRS.Close : Set oRS = Nothing
>
> For i = 0 To UBound(aZIPs, 2)
> sZIP = aZIPs(0, i)
> sSQL = "SELECT CustID,Firstname,Lastname,Address,City,State,ZIP FROM
> Customers WHERE ZIP='" & sZIP & "'"
> Set oRS = oADO.Execute(sSQL)
> sOutput = oRS.GetString(,,",",vbCrLf)
> oRS.Close : Set oRS = Nothing
> oFSO.CreateTextFile(OUTPUT_PATH & sZIP & ".csv", True).Write sOutput
> Response.Write "<a href=""" & sZIP & ".csv"">Click here to download[/color]
CSV[color=blue]
> for ZIP code " & sZIP & "</a><br>"
> Next
>
> oADO.Close : Set oADO = Nothing
> %>
>
>
>
> What that'll do is get all the zips, then loop through them all, query all
> the data for each zip, and write a CSV from each resultset.
>
> Ray at home
>
>
>
>
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:n8pfb.207524$Lnr1.50742@news01.bloor.is.net.c able.rogers.com...[color=green]
> > Thanks Ray. I remember you have given me great helps before. Yes, I[/color][/color]
really[color=blue][color=green]
> > want to export a csv file.
> > I have big csv files containing customers' contact info. I want to[/color][/color]
export[color=blue][color=green]
> > them by zip code and type to respective csv files. What is the simplest[/color]
> way[color=green]
> > to do that? Thanks again.
> >
> > Atse
> >
> >
> > "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
> > news:O6n1R2giDHA.1048@TK2MSFTNGP11.phx.gbl...[color=darkred]
> > > There are a couple of things you can do.
> > >
> > > 1. Build your data in a table and add this to the top of your page:
> > > <% Response.ContentType = "application/vnd.ms-excel" %>
> > >
> > >
> > > 2. Build yourself a comma delimited string and save the string to a[/color][/color]
> file[color=green][color=darkred]
> > > with a .csv file and link to it.
> > >
> > > 3. Use Office Web Components:
> > > http://office.microsoft.com/downloads/2002/owc10.aspx. Before you'd[/color][/color][/color]
go[color=blue][color=green]
> > that[color=darkred]
> > > route, read here though. http://support.microsoft.com/?id=317316
> > >
> > > If you need more details on 1 or 2, post back with a sample of your[/color][/color][/color]
data[color=blue][color=green][color=darkred]
> > > querying and what not.
> > >
> > > Ray at home
> > >
> > >
> > > "atse" <dunggaze@yahoo.com> wrote in message
> > > news:7Vnfb.206907$Lnr1.168685@news01.bloor.is.net. cable.rogers.com...
> > > > Hi experts,
> > > >
> > > > I retrieve data from the database and display on ASP, then I export[/color]
> > these[color=darkred]
> > > > data to a file, like Excel (the best) or text file. Is it possible?[/color][/color][/color]
I[color=blue][color=green][color=darkred]
> > > think
> > > > it is possible, but how can I do that? Thanks for any help.
> > > >
> > > > Atse
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


  #6  
Old July 19th, 2005, 08:45 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel


"atse" <dunggaze@yahoo.com> wrote in message
news:Nhrfb.8669$ko%.2833@news04.bloor.is.net.cable .rogers.com...[color=blue]
> Great! Ray.
>
> You know what I want!! Ok, what if retrieve from a .csv (e.g.[/color]
customer.csv)[color=blue]
> file, instead of the SQL db?[/color]

8|
You're storing your customer data in a text file? 8| 8| 8!
I suppose you could use a text connection string and try that.
http://www.connectionstrings.com/


[color=blue]
> Further questions are:
>
> 1. I don't know how many groups of Zip (your example has group10001, group
> 10002..group 10006. totally 6 groups), and I want to export 6 files, like
> 10001.csv; ... 10006.csv which means the number of output file .csv would[/color]
be[color=blue]
> a variable.[/color]

IN what I posted, that number is not known either. That is what the first
query determines. (select count(distinct) zip...)


[color=blue]
>
> 2. If there is no field name in a .csv file but column/comma/table or A,[/color]
B,[color=blue]
> C...X in an Excel file, how can I select them?[/color]

What do you mean?

[color=blue]
>
> 3. Actually I have another field name "language" (eng/fre), I want them to
> be exported to files eng_10001.csv, eng_10002.csv, fre_10001.csv,
> fre_10003.csv. Is it possible for me to do that. Of course, I am sure you
> can.[/color]

Yes, bring in that column and name your file
rs.fields.item("language").value & "_" & sZIP & ".csv."


Ray at home


  #7  
Old July 19th, 2005, 08:45 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

> > You know what I want!! Ok, what if retrieve from a .csv (e.g.[color=blue]
> customer.csv)[color=green]
> > file, instead of the SQL db?[/color]
>
> 8|
> You're storing your customer data in a text file? 8| 8| 8!
> I suppose you could use a text connection string and try that.
> http://www.connectionstrings.com/
>[/color]

Yes, the data are mostly csv, dat or text format. Do I have to convert them
to a unique format?
[color=blue]
>[color=green]
> > Further questions are:
> >
> > 1. I don't know how many groups of Zip (your example has group10001,[/color][/color]
group[color=blue][color=green]
> > 10002..group 10006. totally 6 groups), and I want to export 6 files,[/color][/color]
like[color=blue][color=green]
> > 10001.csv; ... 10006.csv which means the number of output file .csv[/color][/color]
would[color=blue]
> be[color=green]
> > a variable.[/color]
>
> IN what I posted, that number is not known either. That is what the first
> query determines. (select count(distinct) zip...)
>[color=green]
> > 2. If there is no field name in a .csv file but column/comma/table or A,[/color]
> B,[color=green]
> > C...X in an Excel file, how can I select them?[/color]
>
> What do you mean?
>[/color]

I mean the data file doesn't have the field(column) name, but separated by
comma or tab. If it is open with Excel, you will see column A, B...X. Then,
how can I do the query string
"select [something] from [what] where [what] = '"& sZIP & "' and [what] ='"&
Lang&"'"

Having exported a file on D:\path\eng_10001.csv, how can I make it
downloadable when the wwwroot is on C:\inetpub\

Thanks,

Atse


  #8  
Old July 19th, 2005, 08:46 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel


"atse" <dunggaze@yahoo.com> wrote in message
news:3jEfb.216330$Lnr1.208183@news01.bloor.is.net. cable.rogers.com...[color=blue][color=green][color=darkred]
> > > You know what I want!! Ok, what if retrieve from a .csv (e.g.[/color]
> > customer.csv)[color=darkred]
> > > file, instead of the SQL db?[/color]
> >
> > 8|
> > You're storing your customer data in a text file? 8| 8| 8!
> > I suppose you could use a text connection string and try that.
> > http://www.connectionstrings.com/
> >[/color]
>
> Yes, the data are mostly csv, dat or text format. Do I have to convert[/color]
them[color=blue]
> to a unique format?[/color]

No, it's just a bit odd in my opinion that you wouldn't be using a
database - Access at least.
[color=blue]
>[color=green]
> >
> >[color=darkred]
> > > 2. If there is no field name in a .csv file but column/comma/table or[/color][/color][/color]
A,[color=blue][color=green]
> > B,[color=darkred]
> > > C...X in an Excel file, how can I select them?[/color]
> >
> > What do you mean?
> >[/color]
>
> I mean the data file doesn't have the field(column) name, but separated by
> comma or tab. If it is open with Excel, you will see column A, B...X.[/color]
Then,[color=blue]
> how can I do the query string
> "select [something] from [what] where [what] = '"& sZIP & "' and [what][/color]
='"&[color=blue]
> Lang&"'"[/color]

Is converting to a database an option here? Even if that's only 1% feasable
for whatever reason, go with that 1%. Excel files, csv files, text files,
etc. are all great for storing a little bit of data and using it for
personal use, but driving a website off such data is going to lead to
multiple headaches. Again, just my opinion! :]

Ray at home


  #9  
Old July 19th, 2005, 08:46 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

> Is converting to a database an option here? Even if that's only 1%
feasible[color=blue]
> for whatever reason, go with that 1%. Excel files, csv files, text files,
> etc. are all great for storing a little bit of data and using it for
> personal use, but driving a website off such data is going to lead to
> multiple headaches. Again, just my opinion! :]
>
> Ray at home
>[/color]

Yes, I ever thought of this way, and I have to do that if no other choice.
The problem is about the format of the customer info in the .csv of .txt
files. For example, in the .csv file, sometimes the first column is the
title, the 2nd the last name... and totally there are 10 columns. But
another, there may be 9 or 11 columns and in the different column position.
How can I import the files to db? How can I know how many columns there are
in this file?
Thanks for any idea?

Atse

By the way, can you please show me the Excel connection string. I did try
one from http://www.connectionstrings.com/
but it somehow doesn't work. It complaint with below:

Microsoft JET Database Engine error '80040e37'

The Microsoft Jet database engine could not find the object 'xls'. Make sure
the object exists and that you spell its name and the path name correctly.

/list_item.asp, line 9



the connection is below:

con_xls="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\'test.xls;Extended
Properties=""Excel 8.0;HDR=Yes;IMEX=1"""
set conn=server.CreateObject("ADODB.Connection")
conn.open(con_xls)

'line 9 in list_item.asp

set rs = conn.execute ("select * from test.xls")




  #10  
Old July 19th, 2005, 08:46 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel

You have an erroneous ' in your connection string there, right after D:\.

Ray at home

"atse" <dunggaze@yahoo.com> wrote in message
news:Ng2gb.34595$ko%.10728@news04.bloor.is.net.cab le.rogers.com...
[color=blue]
>
> Microsoft JET Database Engine error '80040e37'
>
> The Microsoft Jet database engine could not find the object 'xls'. Make[/color]
sure[color=blue]
> the object exists and that you spell its name and the path name correctly.
>
> /list_item.asp, line 9
>
>
>
> the connection is below:
>
> con_xls="Provider=Microsoft.Jet.OLEDB.4.0;Data[/color]
Source=D:\'test.xls;Extended


  #11  
Old July 19th, 2005, 08:46 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

Sorry, I copy and paste by mistake only. It wouldn't be there in my file.
Any other problem? Thanks
Atse


"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:uPioMY7iDHA.2728@TK2MSFTNGP10.phx.gbl...[color=blue]
> You have an erroneous ' in your connection string there, right after D:\.
>
> Ray at home
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:Ng2gb.34595$ko%.10728@news04.bloor.is.net.cab le.rogers.com...
>[color=green]
> >
> > Microsoft JET Database Engine error '80040e37'
> >
> > The Microsoft Jet database engine could not find the object 'xls'. Make[/color]
> sure[color=green]
> > the object exists and that you spell its name and the path name[/color][/color]
correctly.[color=blue][color=green]
> >
> > /list_item.asp, line 9
> >
> >
> >
> > the connection is below:
> >
> > con_xls="Provider=Microsoft.Jet.OLEDB.4.0;Data[/color]
> Source=D:\'test.xls;Extended
>
>[/color]


  #12  
Old July 19th, 2005, 08:46 AM
Ray at
Guest
 
Posts: n/a
Default Re: export data to Excel

IIRC, you were using a "file" variable in your querystring. And I assume
that was used in building your connection string. So, it sounds to me that
the variable was empty.

Response.Write YourConnectionStringVariable
Response.End

Ray at home

"atse" <dunggaze@yahoo.com> wrote in message
news:wh5gb.234912$Lnr1.219498@news01.bloor.is.net. cable.rogers.com...[color=blue]
> Sorry, I copy and paste by mistake only. It wouldn't be there in my file.
> Any other problem? Thanks
> Atse
>
>
> "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
> news:uPioMY7iDHA.2728@TK2MSFTNGP10.phx.gbl...[color=green]
> > You have an erroneous ' in your connection string there, right after[/color][/color]
D:\.[color=blue][color=green]
> >
> > Ray at home
> >
> > "atse" <dunggaze@yahoo.com> wrote in message
> > news:Ng2gb.34595$ko%.10728@news04.bloor.is.net.cab le.rogers.com...
> >[color=darkred]
> > >
> > > Microsoft JET Database Engine error '80040e37'
> > >
> > > The Microsoft Jet database engine could not find the object 'xls'.[/color][/color][/color]
Make[color=blue][color=green]
> > sure[color=darkred]
> > > the object exists and that you spell its name and the path name[/color][/color]
> correctly.[color=green][color=darkred]
> > >
> > > /list_item.asp, line 9
> > >
> > >
> > >
> > > the connection is below:
> > >
> > > con_xls="Provider=Microsoft.Jet.OLEDB.4.0;Data[/color]
> > Source=D:\'test.xls;Extended
> >
> >[/color]
>
>[/color]


  #13  
Old July 19th, 2005, 08:46 AM
atse
Guest
 
Posts: n/a
Default Re: export data to Excel

I did try that too. It displays a correct string.

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:uw4DBs7iDHA.3056@tk2msftngp13.phx.gbl...[color=blue]
> IIRC, you were using a "file" variable in your querystring. And I assume
> that was used in building your connection string. So, it sounds to me[/color]
that[color=blue]
> the variable was empty.
>
> Response.Write YourConnectionStringVariable
> Response.End
>
> Ray at home
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:wh5gb.234912$Lnr1.219498@news01.bloor.is.net. cable.rogers.com...[color=green]
> > Sorry, I copy and paste by mistake only. It wouldn't be there in my[/color][/color]
file.[color=blue][color=green]
> > Any other problem? Thanks
> > Atse
> >
> >
> > "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
> > news:uPioMY7iDHA.2728@TK2MSFTNGP10.phx.gbl...[color=darkred]
> > > You have an erroneous ' in your connection string there, right after[/color][/color]
> D:\.[color=green][color=darkred]
> > >
> > > Ray at home
> > >
> > > "atse" <dunggaze@yahoo.com> wrote in message
> > > news:Ng2gb.34595$ko%.10728@news04.bloor.is.net.cab le.rogers.com...
> > >
> > > >
> > > > Microsoft JET Database Engine error '80040e37'
> > > >
> > > > The Microsoft Jet database engine could not find the object 'xls'.[/color][/color]
> Make[color=green][color=darkred]
> > > sure
> > > > the object exists and that you spell its name and the path name[/color]
> > correctly.[color=darkred]
> > > >
> > > > /list_item.asp, line 9
> > > >
> > > >
> > > >
> > > > the connection is below:
> > > >
> > > > con_xls="Provider=Microsoft.Jet.OLEDB.4.0;Data
> > > Source=D:\'test.xls;Extended
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


  #14  
Old July 19th, 2005, 08:49 AM
Greg Griffiths
Guest
 
Posts: n/a
Default Re: export data to Excel

also worth checking out http://www.greggriffiths.org/webdev/both/excel/

atse wrote:
[color=blue]
> Hi experts,
>
> I retrieve data from the database and display on ASP, then I export these
> data to a file, like Excel (the best) or text file. Is it possible? I think
> it is possible, but how can I do that? Thanks for any help.
>
> Atse[/color]

  #15  
Old July 19th, 2005, 08:50 AM
Chris Baldwin
Guest
 
Posts: n/a
Default Re: export data to Excel

"atse" <dunggaze@yahoo.com> wrote in message news:<7Vnfb.206907$Lnr1.168685@news01.bloor.is.net .cable.rogers.com>...[color=blue]
> Hi experts,
>
> I retrieve data from the database and display on ASP, then I export these
> data to a file, like Excel (the best) or text file. Is it possible? I think
> it is possible, but how can I do that? Thanks for any help.
>
> Atse[/color]

Atse,

SoftArtisans ExcelWriter can do exactly that... database-to-Excel web
reports, and you don't need to have Excel installed on the web server.

http://officewriter.softartisans.com/

-chris
 

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles