web app downloading a file

  • Thread starter Thread starter roundcrisis
  • Start date Start date
R

roundcrisis

hi:

i have a small web app that uploads some files, and now i want to be
able to download them, basically i have a full path of the file, i
been googling but i dont seem to find an example of this
thanks

f
 
Hi,

HttpWebRequest & WebClient will send you ni the right direction

Note that you will need the web path (not the physical one)
 
f,

You can use the WebClient class or the HttpWebRequest/HttpWebResponse
classes in the System.Net namespace to download files (from what I assume is
a website).
 
Hi,

HttpWebRequest & WebClient will send you ni the right direction

Note that you will need the web path (not the physical one)








- Show quoted text -

what if I dont have a web path?
 
Hi,

roundcrisis said:
what if I dont have a web path?


You have to.
You will have to make the upload directory accesible (like a virtual dir) to
be able to downloat from there.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top