Wrox Programmer Forums
|
Classic ASP Basics For beginner programmers starting with "classic" ASP 3, pre-".NET." NOT for ASP.NET 1.0, 1.1, or 2.0
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 14th, 2005, 08:11 PM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 108
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Yes, now the dialog box can appear by using the following codes:
'''''''''''''''''''''''''''''''''''''''''
set fso = createobject("scripting.filesystemobject")
set objTS = fso.OpenTextFile(docFileName,1)

strFileName = "reportWord.doc"
response.addHeader "Content-type","application/msword" Response.AddHeader "Content-Disposition", "attachment;filename=""" & strFileName & """"

Response.BinaryWrite (objTS.ReadAll)
Response.Flush
'''''''''''''''''''''''''''''''''''''''''''''''''' '''''
but when I open the saved file, it's the binary data, I cann't read it, why?????
I also try to use: Set Stream = Server.CreateObject("ADODB.Stream") said like the link: http://www.psacake.com/web/if.asp, but get an error? Is there any way that I can save the word file in the client side, with all the logo/header/footer?

Thanks

Andraw







Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP & Excel - Permission denied: 'CreateObject' shamigc Classic ASP Components 1 May 9th, 2006 06:58 PM
error when createobject excel.application vovo Classic ASP Professional 0 February 3rd, 2005 12:29 AM
Server.CreateObject("Outlook.Application") Dave Sell Classic ASP Professional 1 September 4th, 2004 01:44 PM
Word application kekohchaa VS.NET 2002/2003 1 July 1st, 2004 07:14 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.