473,412 Members | 5,385 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,412 software developers and data experts.

ASP.NET 2.0 FileUpload control

How strong and reliable is the new ASP.NET 2.0 FileUpload control? By that,
I mean is it reliable enough to accept 2-gigabyte file uploads per upload
session?

Also, is it possible or easy to implement an upload progress bar using this
FileUpload control?

Thanks.
Nov 19 '05 #1
5 1829
You have lowered your expectation from 4Gigs and + to only a scanty 2Gigs?

S. L.

"Uncle Ben" <sp******@nospam.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
How strong and reliable is the new ASP.NET 2.0 FileUpload control? By
that,
I mean is it reliable enough to accept 2-gigabyte file uploads per upload
session?

Also, is it possible or easy to implement an upload progress bar using
this
FileUpload control?

Thanks.

Nov 19 '05 #2
Not entirely. But for now, I'd like to know if anyone has implemented the
FileUpload control in ASP.NET 2.0 beta 1 and if so, how well it works.
"Sylvain Lafontaine" <sylvain aei ca (fill the blanks, no spam please)>
wrote in message news:ut**************@TK2MSFTNGP12.phx.gbl...
You have lowered your expectation from 4Gigs and + to only a scanty 2Gigs?

S. L.

"Uncle Ben" <sp******@nospam.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
How strong and reliable is the new ASP.NET 2.0 FileUpload control? By
that,
I mean is it reliable enough to accept 2-gigabyte file uploads per upload session?

Also, is it possible or easy to implement an upload progress bar using
this
FileUpload control?

Thanks.


Nov 19 '05 #3
This is more likely a server problem ie. having the whole file help in
memory. I wonder if this is a limitation tied to IIS and/or HTTP (i.e the
request needs to be entirely read before passed to ASP.NET ????).

What is it ?

My first though would be to reduce the file size (for example upload
differences), to install something client side if this is for specific
users, to handle this using something different if for general usee (FTP,
client side control with PUT access, Webdav or whatever else that doesn't
use up the memory).

Hopefully someone will tell us if this is limitation that can't be
workaround using HTTP...

Patrice

--

"Uncle Ben" <sp******@nospam.com> a écrit dans le message de
news:Oa*************@TK2MSFTNGP12.phx.gbl...
Not entirely. But for now, I'd like to know if anyone has implemented the
FileUpload control in ASP.NET 2.0 beta 1 and if so, how well it works.
"Sylvain Lafontaine" <sylvain aei ca (fill the blanks, no spam please)>
wrote in message news:ut**************@TK2MSFTNGP12.phx.gbl...
You have lowered your expectation from 4Gigs and + to only a scanty 2Gigs?

S. L.

"Uncle Ben" <sp******@nospam.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
How strong and reliable is the new ASP.NET 2.0 FileUpload control? By
that,
I mean is it reliable enough to accept 2-gigabyte file uploads per

upload session?

Also, is it possible or easy to implement an upload progress bar using
this
FileUpload control?

Thanks.



Nov 19 '05 #4
Try perhaps :

http://www.websupergoo.com/abcupload.net-1.htm

They claim to be able to stream the uploaded file to disk...

Good luck. Let us know about your findings...
(be aware also of the time taken, ie. if something goes wrong the user will
have likely to upload the whole file again).

Patrice

--

"Patrice" <no****@nowhere.com> a écrit dans le message de
news:ek**************@TK2MSFTNGP12.phx.gbl...
This is more likely a server problem ie. having the whole file help in
memory. I wonder if this is a limitation tied to IIS and/or HTTP (i.e the
request needs to be entirely read before passed to ASP.NET ????).

What is it ?

My first though would be to reduce the file size (for example upload
differences), to install something client side if this is for specific
users, to handle this using something different if for general usee (FTP,
client side control with PUT access, Webdav or whatever else that doesn't
use up the memory).

Hopefully someone will tell us if this is limitation that can't be
workaround using HTTP...

Patrice

--

"Uncle Ben" <sp******@nospam.com> a écrit dans le message de
news:Oa*************@TK2MSFTNGP12.phx.gbl...
Not entirely. But for now, I'd like to know if anyone has implemented the
FileUpload control in ASP.NET 2.0 beta 1 and if so, how well it works.
"Sylvain Lafontaine" <sylvain aei ca (fill the blanks, no spam please)>
wrote in message news:ut**************@TK2MSFTNGP12.phx.gbl...
You have lowered your expectation from 4Gigs and + to only a scanty

2Gigs?
S. L.

"Uncle Ben" <sp******@nospam.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
> How strong and reliable is the new ASP.NET 2.0 FileUpload control? By > that,
> I mean is it reliable enough to accept 2-gigabyte file uploads per

upload
> session?
>
> Also, is it possible or easy to implement an upload progress bar using > this
> FileUpload control?
>
> Thanks.
>
>



Nov 19 '05 #5
in a word no.

the control renders a standard <input type=file> html control. the server
side has been changed to so that the whole upload need not be held in memory
(can be configured to cache on disk), and a stream interface has been added.
so you could upload a 2bg successfully. but a single network aborts the
upload. the browser may choke before the upload completes (not sure IE could
actually do it).

also as asp.net threads are tied up during the transfer, you will be limited
to the number of concurrent transfers allowed.

to upload (or download) large files, you need client component, that can
restart/redo a transfer.

-- bruce (sqlwork.com)

"Uncle Ben" <sp******@nospam.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
How strong and reliable is the new ASP.NET 2.0 FileUpload control? By
that,
I mean is it reliable enough to accept 2-gigabyte file uploads per upload
session?

Also, is it possible or easy to implement an upload progress bar using
this
FileUpload control?

Thanks.

Nov 19 '05 #6

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

Similar topics

2
by: Islamegy® | last post by:
I'm use FormView for editing a photo gallery... I add FileUpload control to upload images to the Gallery. I'm binding my Formview to objectdatasource i tried upload images onItemInserting &...
1
by: Marko Vuksanovic | last post by:
I am trying to implement an upload progress indicator using atlas, using the following workaround: http://forums.asp.net/thread/1321664.aspx This is the code in FileUpload.apsx file is as...
12
by: Phil Z. | last post by:
After migrating an ASP.NET 1.1 application to 2.0 we were getting "Cannot access a closed file" errors when uploading. I found a number of post on the subject and have since moved from using an...
4
by: Dave | last post by:
If you had a FileUpload control inside of a FormView...how would you use FindControl to access the FileUpload properties? Let me just say that...
1
by: Harinath | last post by:
Hi All, I am working on a portal using .net2.0. In one of my page, i have FileUpload control. I am doing some server side validation for form fields in general. if there is any validation...
3
by: rn5a | last post by:
The ASPX FileUpload control displays a TextBox along with a 'Browse...' Button. Setting the different properties of this control just reflects the changes in the TextBox but not the Button. For...
1
by: Nathan Sokalski | last post by:
I have an ASP.NET 2.0 webform which includes both a FileUpload contol and a Calendar control. When the user selects a new data with the Calendar control, the FileUpload control is reset (there is...
5
by: =?Utf-8?B?QmVydA==?= | last post by:
Hi How can you set the filename property in the asp:fileupload control? How can you persist the value of the chosen filename between postbacks? thanks B
9
by: vital | last post by:
Hi, I have a User control which has a fileupload control. With the requirements I placed the user control in a UpdatePanel of ASP.NET Ajax and the fileupload.postedfile.filename giving error. ...
2
by: =?Utf-8?B?UGF1bA==?= | last post by:
I have a gridview with 2 columns. One column is a BoundColumn to a part number (string). One column is an ItemTemplate with a FileUpload control. There can be multiple rows (i.e. part numbers)...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

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.