|
 |
asp_web_howto thread: It's possible to download a file which is not a zip format???
Message #1 by <sstefe@y...> on Mon, 15 Oct 2001 00:49:00 -0700 (PDT)
|
|
Hello all,
I've a problem.
I have a project and an Oracle data base for my
project.
I have a directory in my project where a I'm keeping
some documents (.doc, .xsl, .ppt, .htm etc.) and an
entry in my data base to refer to this path.
I want tyo create a page in which to present a list
with all my document and to give the user the
opportunity to download the documents.
Message #2 by "Ken Schaefer" <ken@a...> on Mon, 15 Oct 2001 18:42:22 +1000
|
|
<%
Do While Not objRS.EOF
With Response
.Write("<a href=""" & objRS("FilePath") & """>" & objRS("FileName")
& "</a><br>" & vbCrLf)
End With
objRS.movenext
Loop
%>
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: <sstefe@y...>
Subject: [asp_web_howto] It's possible to download a file which is not a zip
format???
: Hello all,
:
: I've a problem.
: I have a project and an Oracle data base for my
: project.
: I have a directory in my project where a I'm keeping
: some documents (.doc, .xsl, .ppt, .htm etc.) and an
: entry in my data base to refer to this path.
: I want tyo create a page in which to present a list
: with all my document and to give the user the
: opportunity to download the documents.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #3 by "Paul R Beaulieu" <paulbeaulieu@s...> on Tue, 16 Oct 2001 07:54:05 -0400
|
|
Further to this, is there an easy way to allow the user to browse for their
file and once selected, download it from their machine to a server? Paul.
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: October 15, 2001 4:42 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: It's possible to download a file which is
not a zip format???
<%
Do While Not objRS.EOF
With Response
.Write("<a href=""" & objRS("FilePath") & """>" & objRS("FileName")
& "</a><br>" & vbCrLf)
End With
objRS.movenext
Loop
%>
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: <sstefe@y...>
Subject: [asp_web_howto] It's possible to download a file which is not a zip
format???
: Hello all,
:
: I've a problem.
: I have a project and an Oracle data base for my
: project.
: I have a directory in my project where a I'm keeping
: some documents (.doc, .xsl, .ppt, .htm etc.) and an
: entry in my data base to refer to this path.
: I want tyo create a page in which to present a list
: with all my document and to give the user the
: opportunity to download the documents.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
 |