Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   asp upload component - multiple files (http://www.velocityreviews.com/forums/t800882-asp-upload-component-multiple-files.html)

crowl@gmx.de 03-14-2006 02:17 PM

asp upload component - multiple files
 
Hi there,

I am looking for a component allowing me uploading multiple files by my
asp page. I have found several components achieving this by require a
<input type="file" name="FileX"> field for each file to upload. I want
to allow my visitor to select the files to upload in the "Open" window.
In the "Open" window it should be possible to select multiple files.

Does such an asp component exist?

I have tested some like SAFileUp or Pure VB, but all seems to require
an <input> field for each file to upload.

Thanks for any suggestion.


Larry Bud 03-14-2006 03:07 PM

Re: asp upload component - multiple files
 

crowl@gmx.de wrote:
> Hi there,
>
> I am looking for a component allowing me uploading multiple files by my
> asp page. I have found several components achieving this by require a
> <input type="file" name="FileX"> field for each file to upload. I want
> to allow my visitor to select the files to upload in the "Open" window.
> In the "Open" window it should be possible to select multiple files.
>
> Does such an asp component exist?
>
> I have tested some like SAFileUp or Pure VB, but all seems to require
> an <input> field for each file to upload.
>
> Thanks for any suggestion.


5 seconds of googling "asp multiple file upload" found numerous hits,
including

http://www.15seconds.com/issue/990723.htm


crowl@gmx.de 03-14-2006 04:11 PM

Re: asp upload component - multiple files
 
Hello,

Thanks for your reply. Unfortunately this does not help. I have already
done some research on this topic. As I am wrote, uploading multiple
files is not the issue. The issue is to select these multiple files
without having a <input> field for each file to upload.

I want to click on an button that opens a "Open window". In this window
it should be possible to select multiple files which should be
uploaded. Does anyone know a component which can achieve this goal?


Tim Slattery 03-14-2006 05:24 PM

Re: asp upload component - multiple files
 
crowl@gmx.de wrote:

>Hi there,
>
>I am looking for a component allowing me uploading multiple files by my
>asp page. I have found several components achieving this by require a
><input type="file" name="FileX"> field for each file to upload. I want
>to allow my visitor to select the files to upload in the "Open" window.
>In the "Open" window it should be possible to select multiple files.
>
>Does such an asp component exist?


ASP has nothing to do with it. you're asking about allowing the client
to select multiple files at once. ASP runs on the server, not the
client.

There's no way to do this in HTML. The <input type="file"..." > HTML
element allows a user to select ONE file. You can have as many of
those elements on the page as you want, but each one will result in
one file being uploaded.

If you write an ActiveX control, of course, you can do anything you
want.

--
Tim Slattery
MS MVP(DTS)
Slattery_T@bls.gov

Phillip Windell 03-14-2006 05:41 PM

Re: asp upload component - multiple files
 
Even Microsoft's OWA with Exchange (which is just an ASP Site) only lets you
select one file at a time.

--
Phillip Windell [MCP, MVP, CCNA]
www.wandtv.com


<crowl@gmx.de> wrote in message
news:1142352701.936585.192430@i40g2000cwc.googlegr oups.com...
> Hello,
>
> Thanks for your reply. Unfortunately this does not help. I have already
> done some research on this topic. As I am wrote, uploading multiple
> files is not the issue. The issue is to select these multiple files
> without having a <input> field for each file to upload.
>
> I want to click on an button that opens a "Open window". In this window
> it should be possible to select multiple files which should be
> uploaded. Does anyone know a component which can achieve this goal?
>




Patrice 03-14-2006 05:56 PM

Re: asp upload component - multiple files
 
You can't without having something client side (java applet, activex control
or dotnet control) that the users will have to allow (for safety reasons).

--
Patrice

<crowl@gmx.de> a écrit dans le message de
news:1142352701.936585.192430@i40g2000cwc.googlegr oups.com...
> Hello,
>
> Thanks for your reply. Unfortunately this does not help. I have already
> done some research on this topic. As I am wrote, uploading multiple
> files is not the issue. The issue is to select these multiple files
> without having a <input> field for each file to upload.
>
> I want to click on an button that opens a "Open window". In this window
> it should be possible to select multiple files which should be
> uploaded. Does anyone know a component which can achieve this goal?
>




Adrienne Boswell 03-15-2006 04:47 AM

Re: asp upload component - multiple files
 
Gazing into my crystal ball I observed crowl@gmx.de writing in
news:1142352701.936585.192430@i40g2000cwc.googlegr oups.com:

> Hello,
>
> Thanks for your reply. Unfortunately this does not help. I have already
> done some research on this topic. As I am wrote, uploading multiple
> files is not the issue. The issue is to select these multiple files
> without having a <input> field for each file to upload.
>
> I want to click on an button that opens a "Open window". In this window
> it should be possible to select multiple files which should be
> uploaded. Does anyone know a component which can achieve this goal?
>


This might be useful: <http://www.cs.tut.fi/
~jkorpela/forms/file.html#multi>

Basically, because of poor browser support, you can't. It's a client
side issue.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

crowl@gmx.de 03-15-2006 09:16 AM

Re: asp upload component - multiple files
 
Thanks all for your help.

Is there any ActiveX control out to buy which will achieve this? Any
recommendations?



All times are GMT. The time now is 04:48 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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