Computer Learning Zone CLZ Access Excel Word Windows

Violence is the last refuge of the incompetent.

-Isaac Asimov
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Active Server Pages Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
save as PDF or CSV file
MUBEEZI MICAH 

13 years ago
Dear Richard,

I dont know if i missed this in your ASP lessons or not. When i display information from my web database using an SQL string (say a list of customers), i would like to save it as a PDF or CSV file. How can i achieve that?
Please let me know. Thanx.

MICAH


Reply from Richard Rost:

Saving as a PDF requires specialized software to format the file correctly. You can create a CSV text file using file I/O commands on the server. I haven't covered that in any of my ASP lessons so far, but it's on the list for the future. It only takes a few lines of code. Something like:

set FS = Server.CreateObject("Scripting.FileSystemObject")
set F = FS.CreateTextFile("c:\website\temp\myfile.txt",true)
F.write("Hi there!")
F.close
set F = nothing
set FS = nothing

This folder has to be available to your web site AND the web server (IIS) has to have read/write access to it... so make sure there's nothing else sensitive in there because folks will be able to view ALL of the files in that folder. I usually set up a /temp folder in my web site for stuff like this.

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Active Server Pages Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 5/17/2026 5:38:16 AM. PLT: 1s