Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > How to upload file > 4GB on web server from ASP.NET

Reply
Thread Tools

How to upload file > 4GB on web server from ASP.NET

 
 
DotNetJunkies User
Guest
Posts: n/a
 
      07-31-2004
The HTMLInputFile control works fine up to 25 MB with changing MaxRequestLen in web.config but didn't work for greater size of the file..does anybody have the idea how to do that.??

---
Posted using Wimdows.net NntpNews Component -

Post Made from http://www.DotNetJunkies.com/newsgroups Our newsgroup engine supports Post Alerts, Ratings, and Searching.
 
Reply With Quote
 
 
 
 
Joerg Jooss
Guest
Posts: n/a
 
      07-31-2004
DotNetJunkies User wrote:
> The HTMLInputFile control works fine up to 25 MB with changing
> MaxRequestLen in web.config but didn't work for greater size of the
> file..does anybody have the idea how to do that.??


Quite frankly, doing a 4 GB upload through ASP.NET is insane, as it blows up
your worker process (it will keep all uploaded bytes in memory until the
upload is finished). You're much better off using another protocol for such
heavy weight operations.

Cheers,

--
Joerg Jooss


 
Reply With Quote
 
 
 
 
Lucas Tam
Guest
Posts: n/a
 
      07-31-2004
DotNetJunkies User <User@-NOSPAM-DotNetJunkies.com> wrote in
news::

> The HTMLInputFile control works fine up to 25 MB with changing
> MaxRequestLen in web.config but didn't work for greater size of the
> file..does anybody have the idea how to do that.??


FTP.

Because I bet the Inputfile control stores the file into memory... thus
blowing your server up.

--
Lucas Tam ()
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
 
Reply With Quote
 
Joe Fallon
Guest
Posts: n/a
 
      08-01-2004
Get a 3rd party control that breaks the file up into chunks and streams it
to the server.
This way you do not overload the RAM and blow up your server.
--
Joe Fallon



"DotNetJunkies User" <User@-NOSPAM-DotNetJunkies.com> wrote in message
news:...
> The HTMLInputFile control works fine up to 25 MB with changing

MaxRequestLen in web.config but didn't work for greater size of the
file..does anybody have the idea how to do that.??
>
> ---
> Posted using Wimdows.net NntpNews Component -
>
> Post Made from http://www.DotNetJunkies.com/newsgroups Our newsgroup

engine supports Post Alerts, Ratings, and Searching.


 
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
If you have 4GB, are you getting 4GB? David J Taylor Digital Photography 66 02-02-2006 08:55 AM
Upload a file without file Upload control - ASP.Net =?Utf-8?B?U2FyYXY=?= ASP .Net 3 08-03-2005 01:09 AM
4GB+ Upload in ASP.NET Uncle Ben ASP .Net 8 03-13-2005 10:11 PM
How to upload file > 4GB on web server from ASP.NET DotNetJunkies User ASP .Net 0 07-31-2004 05:40 AM
How to upload file > 4GB on web server from ASP.NET parthivjoshi@rediffmail.com ASP .Net 0 07-31-2004 05:38 AM



Advertisments