0

Possible Duplicate:
Upload files directly to Amazon S3 from ASP.NET application

My ASP.NET MVC application will take a lot of bandwidth and storage space. How can I setup an ASP.NET upload page so the file the user uploaded will go straight to Amazon S3 without using my web server's storage and bandwidth?

Community
  • 1
  • 1
ycseattle
  • 3,687
  • 7
  • 36
  • 42

1 Answers1

2

You can write a form that posts directly to Amazon's S3 service via HTML POST. That should prevent you from needing the bandwidth on your end, assuming you need to do no processing of the content yourself before sending it to S3.

Jonathan Rupp
  • 15,522
  • 5
  • 45
  • 61