Uploading files ...

G

Gary

Hi all,

I am trying to upload file (>500 MB in size) from my webform.

Bandwidth is not a issue as the asp.net application would be used in the
Intranet environment.

Can someone plz suggest any asynchronus way of inserting records into
database from a dataset ?

Also, is there any ansynchronous way of uploading the files as well ?

Please help !

Gary
 
K

Kevin Spencer

Can someone plz suggest any asynchronus way of inserting records into
database from a dataset ?

You can use Threading to do this. See the following .Net SDK article for
help:
Also, is there any ansynchronous way of uploading the files as well ?

Afraid not, unless you put the file upload into a separate browser window.
The file upload HTML form field sends the file with the Form Post request to
the server, just like any other form field.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.

http://msdn.microsoft.com/library/d...en-us/dv_vstechart/html/vbtchUsingThreads.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top