Wrox Programmer Forums
|
Classic ASP Professional For advanced coder questions in ASP 3. 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 Professional 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 September 12th, 2003, 02:41 AM
Registered User
 
Join Date: Sep 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default prompting user to download files

Hi,
  I have an asp page where i display links to documents on my webserver. If user clicks on the link, I want to prompt him with Open/Download dialog box.
I am using the following code. But only pdfs are getting opened.
My word,excel,ppt, are giving problem.
Is there a way to fix this. I am using following code.

Sub OpenDoc
    Dim Stream
    Dim Contents
    Dim strFileName
    Dim strFilePath

    strFilePath = "G:\KWindow users in UK.doc"
    strFileName = "KWindow users in UK.doc"
    'Response.ContentType = "application/x-msexcel"
    'Response.ContentType = "application/vnd.ms-excel"
    'Response.ContentType = "application/msword"
    Response.ContentType = "application/octet-stream"
    Response.AddHeader "content-disposition", "attachment; filename=" & strFileName
    Set Stream = server.CreateObject("ADODB.Stream")
    Stream.Open
    Stream.LoadFromFile strFilePath
    Contents = Stream.ReadText
    Response.BinaryWrite Contents

    Stream.Close
    Set Stream = Nothing
End Sub

Please do help me,
rgds





Similar Threads
Thread Thread Starter Forum Replies Last Post
Download files from FTP dbellavi ASP.NET 1.0 and 1.1 Professional 7 July 19th, 2007 11:54 AM
How To Download Files sumith ASP.NET 1.0 and 1.1 Basics 2 June 22nd, 2007 12:45 AM
drawing circle after prompting user Lizane Java GUI 1 June 18th, 2007 09:19 AM
Size of Download Files mslane BOOK: Expert One-on-One Access Application Development 1 October 2nd, 2004 07:02 PM
Download Files sriviggu2002 PHP How-To 1 March 17th, 2004 09:32 PM





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