473,386 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

File upload control

Hello all,

1. I am a little new to ASP.NET, so please bear with me.

2. I am trying to create a very simple website which requires an upload
box (end user file sizes may be anywhere between 1MB to 10 MB).

3. I would also like to show a progress bar so that the user can see
the progress of what he is uploading.

4. From what I've read, certain uploading controls allow reading of the
file size at the client's end and divide the data into chunks and show
a nice progress bar as it is uploading. I did a Google and that showed
many controls which are charged anywhere between USD 100 to USD 250.

5. I am looking for a suggestion on which 'upload control' to use. Of
course, the lesser the cost, the better. There wouldn't be any open
source ASP.NET uploading control, would there? Maybe that's wishful
thinking!

Thanks in advance for any lead or suggestion.

Vince

Sep 15 '06 #1
5 2276
wishful thinking? not at all, the .Net open source community is very much
alive. try this free component on codeproject:
http://www.codeproject.com/aspnet/Fi...ogress_Bar.asp
it is a trimmed down version of this one:
http://assistedsolutions.com/components/SlickUpload/

these may be enough for your needs
tim
<Lt*********@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Hello all,

1. I am a little new to ASP.NET, so please bear with me.

2. I am trying to create a very simple website which requires an upload
box (end user file sizes may be anywhere between 1MB to 10 MB).

3. I would also like to show a progress bar so that the user can see
the progress of what he is uploading.

4. From what I've read, certain uploading controls allow reading of the
file size at the client's end and divide the data into chunks and show
a nice progress bar as it is uploading. I did a Google and that showed
many controls which are charged anywhere between USD 100 to USD 250.

5. I am looking for a suggestion on which 'upload control' to use. Of
course, the lesser the cost, the better. There wouldn't be any open
source ASP.NET uploading control, would there? Maybe that's wishful
thinking!

Thanks in advance for any lead or suggestion.

Vince

Sep 15 '06 #2
Most web-browsers provide a rudamentary progress bar in their status bar
areas. Before trying a third party file upload control, give the one in
ASP.NET a try. Also, for larger files, you will need to set

<system.web>
<!-- set the maximum upload size to 50Mb -->
<httpRuntime maxRequestLength = "50000" />
</system.web>

The default size is 4096Kb.

Mike Ober.
<Lt*********@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Hello all,

1. I am a little new to ASP.NET, so please bear with me.

2. I am trying to create a very simple website which requires an upload
box (end user file sizes may be anywhere between 1MB to 10 MB).

3. I would also like to show a progress bar so that the user can see
the progress of what he is uploading.

4. From what I've read, certain uploading controls allow reading of the
file size at the client's end and divide the data into chunks and show
a nice progress bar as it is uploading. I did a Google and that showed
many controls which are charged anywhere between USD 100 to USD 250.

5. I am looking for a suggestion on which 'upload control' to use. Of
course, the lesser the cost, the better. There wouldn't be any open
source ASP.NET uploading control, would there? Maybe that's wishful
thinking!

Thanks in advance for any lead or suggestion.

Vince

Sep 15 '06 #3
hi Mike,
>give the one in ASP.NET a try
i think you mean the browser progress bar? this wouldn't be anything to do
with Asp.Net.

the browser progress bars in IE6 and Firefox provide no useful feedback for
file uploads. IE shows the first bar as soon as you start, and then it will
probably finish before the next bar increments. in my limited testing,
downloads finished at between 10% or 20% progress. the IE progress bar just
crawls along to show you that it is alive, without showing any actual
progress. Firefox doesn't seem to show any progress at all for file
uploads.

my impression is that they only work for downloading content.

tim


"Michael D. Ober" <obermd.@.alum.mit.edu.nospamwrote in message
news:%2***************@TK2MSFTNGP06.phx.gbl...
Most web-browsers provide a rudamentary progress bar in their status bar
areas. Before trying a third party file upload control, give the one in
ASP.NET a try. Also, for larger files, you will need to set

<system.web>
<!-- set the maximum upload size to 50Mb -->
<httpRuntime maxRequestLength = "50000" />
</system.web>

The default size is 4096Kb.

Mike Ober.
<Lt*********@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
>Hello all,

1. I am a little new to ASP.NET, so please bear with me.

2. I am trying to create a very simple website which requires an upload
box (end user file sizes may be anywhere between 1MB to 10 MB).

3. I would also like to show a progress bar so that the user can see
the progress of what he is uploading.

4. From what I've read, certain uploading controls allow reading of the
file size at the client's end and divide the data into chunks and show
a nice progress bar as it is uploading. I did a Google and that showed
many controls which are charged anywhere between USD 100 to USD 250.

5. I am looking for a suggestion on which 'upload control' to use. Of
course, the lesser the cost, the better. There wouldn't be any open
source ASP.NET uploading control, would there? Maybe that's wishful
thinking!

Thanks in advance for any lead or suggestion.

Vince


Sep 15 '06 #4
Hey Vince,

For open source, try

http://www.brettle.com/neatupload

Ken
Microsoft MVP [ASP.NET]

<Lt*********@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Hello all,

1. I am a little new to ASP.NET, so please bear with me.

2. I am trying to create a very simple website which requires an upload
box (end user file sizes may be anywhere between 1MB to 10 MB).

3. I would also like to show a progress bar so that the user can see
the progress of what he is uploading.

4. From what I've read, certain uploading controls allow reading of the
file size at the client's end and divide the data into chunks and show
a nice progress bar as it is uploading. I did a Google and that showed
many controls which are charged anywhere between USD 100 to USD 250.

5. I am looking for a suggestion on which 'upload control' to use. Of
course, the lesser the cost, the better. There wouldn't be any open
source ASP.NET uploading control, would there? Maybe that's wishful
thinking!

Thanks in advance for any lead or suggestion.

Vince

Sep 15 '06 #5
Hey Tim, Mike & Ken,

I owe you guys a big thank you for the helpful feedback!

I did not mean the browser progress bar which I also think, doesn't
really do much for file uploads. I did want a progress bar like the one
Tim suggested.
(http://www.codeproject.com/aspnet/Fi...gress_Bar.asp). It
looks promising. That failing, I'll try
http://www.brettle.com/neatupload.

Again, thank you very much for your help.
Vince

Sep 16 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
by: CHIN | last post by:
Hi all.. here s my problem ( maybe some of you saw me on other groups, but i cant find the solution !! ) I have to upload a file to an external site, so, i made a .vbs file , that logins to...
1
by: TK | last post by:
I have a file upload control to allow a user to select/upload a file to the server. They need to upload x number of files in one shot because they have to confirm that they are uploading x number...
13
by: Sky Sigal | last post by:
I have created an IHttpHandler that waits for uploads as attachments for a webmail interface, and saves it to a directory that is defined in config.xml. My question is the following: assuming...
5
by: George Durzi | last post by:
Anyone know of a good file upload control? I don't like using the built in one because it's unable to maintain state on a refresh. Thanks!
3
by: Bijoy Naick | last post by:
I've written a simple file upload user control in VB .NET. It comprises of an InputFile HTML Server Control, an Upload button and a message label. User clicks on the Browse button of the...
3
by: Sarav | last post by:
Hi All, I need to upload an XML file via an client side ActiveX control. I searched the web but everywhere got the samples of using file control alone. How can I upload a file into my web server...
12
by: GuangXiN | last post by:
I want the file upload element disappear, instead of it, I place a text box and a button with my own css defination. but it doesn't work on IE7. What should I do now? <form action="upload.php"...
7
Curtis Rutland
by: Curtis Rutland | last post by:
Building A Silverlight (2.0) Multi-File Uploader All source code is C#. VB.NET source is coming soon. Note: This project requires Visual Studio 2008 SP1 or Visual Web Developer 2008 SP1 and...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.