Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling a newer version of excel

Status
Not open for further replies.

Gixonita

IS-IT--Management
Oct 17, 2005
103
0
0
US
Hi all,

I have a little site that generates reports (using Crystal) and displays the results in either pdf format or excel format (2003).

For excel I use the next code:

Code:
Response.ClearContent()

Response.ClearHeaders()

Response.ContentType ="application/vnd.ms-excel"

Response.WriteFile(szFileName)

Response.Flush()

Response.Close()

A cross tab report was developed that unfortunately has more columns than what excel 2003 can handle so we bought the 2007 version. Now, my question is, do I install excel on the specific user (the only one that uses this report) or do I install it in the web server?

Thanks in advance for your help

Luis Torres
 
the client will require excel, not the server. all the server does is export the data to a file, it doesn't care what software is needed to view the file.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top