Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Uploading files to the web server

Reply
Thread Tools

Uploading files to the web server

 
 
Jason
Guest
Posts: n/a
 
      01-20-2004
Hi

I have this web application for an intranet. I would like to be able to
upload 1 or more files from the client machine. for example: the client is
working with 10 files and after he is done with this "batch" of files, those
10 files will be uploaded from the clients machine to a specified location
on the web server.

what would be the best way to approach this?

Thanks
Jason


 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      01-20-2004
You have basically 2 choices.

HTML provides the "input type=file" HTML element which renders a box and a
Browse button for uploading a single file. You could get user input to
determine how many files are desired to upload, and then dynamically add
that many of these to the page, so the user can upload a single file in each
one. As you can see, this isn't the most convenient method, but it is the
simplest.

The other alternative is to create an ActiveX control that can upload
multiple files, an embedded Windows Form, or some other client-side
application that can be activated via the browser.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Jason" <> wrote in message
news:...
> Hi
>
> I have this web application for an intranet. I would like to be able to
> upload 1 or more files from the client machine. for example: the client is
> working with 10 files and after he is done with this "batch" of files,

those
> 10 files will be uploaded from the clients machine to a specified location
> on the web server.
>
> what would be the best way to approach this?
>
> Thanks
> Jason
>
>



 
Reply With Quote
 
 
 
 
Jason
Guest
Posts: n/a
 
      01-20-2004
it seems i must use the first option.

client side installations are most undesirable!

Thanks for the help
possibly any other solutions??

Thanks again
Jason

"Kevin Spencer" <> wrote in message
news:Ow2F$...
> You have basically 2 choices.
>
> HTML provides the "input type=file" HTML element which renders a box and a
> Browse button for uploading a single file. You could get user input to
> determine how many files are desired to upload, and then dynamically add
> that many of these to the page, so the user can upload a single file in

each
> one. As you can see, this isn't the most convenient method, but it is the
> simplest.
>
> The other alternative is to create an ActiveX control that can upload
> multiple files, an embedded Windows Form, or some other client-side
> application that can be activated via the browser.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> Big things are made up
> of lots of little things.
>
> "Jason" <> wrote in message
> news:...
> > Hi
> >
> > I have this web application for an intranet. I would like to be able to
> > upload 1 or more files from the client machine. for example: the client

is
> > working with 10 files and after he is done with this "batch" of files,

> those
> > 10 files will be uploaded from the clients machine to a specified

location
> > on the web server.
> >
> > what would be the best way to approach this?
> >
> > Thanks
> > Jason
> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Connection to web server lost uploading files of 100mb Phil Johnson ASP .Net 3 04-09-2008 08:57 AM
ftp uploading vs. control panel uploading Dung Ping HTML 10 01-16-2006 10:43 AM
Uploading files to Web server FusionGuy ASP .Net 2 10-17-2005 01:16 PM
Problem uploading files to Web server FusionGuy ASP .Net 0 10-12-2005 06:33 PM
Web Service: Uploading files and setting file security on a file server wym ASP .Net Web Services 0 04-26-2004 02:02 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57