Alternate of file upload HTML CONTROL?

  • Thread starter Thread starter MS
  • Start date Start date
M

MS

HI,

is there any alternate of THML file upload control...?

can we get stream from the fileupload control to save it temporarly in
session and then later on saving to some directory...
 
The upload control is simply a wrapper for RFC 1867, so if you can
understand that then you can create your own version of upload interception
that does what you like, not that its an easy task however but there are
lots of ittpmodules that demonstrate the etchnique, and a lot of articles
that explain how to work with 1867 streams..

http://www.faqs.org/rfcs/rfc1867.html

I would certainly though advise strongly against saving file binary streams
in session, you only have so much working memory free and it would not take
long to use all available memory with a few big files.
 
Back
Top