0

I have a page (May even use a handler), anyway.. that is awaiting an HTTP POST with a number of variables including an image encoded as a multipart/form-data Content Type.

How do I save the image from the HTTP Post?

This image encoded int the HTTP POST is from another site and is not from a local FileUpload Control.

EDIT :

Hang on, am I being daft.. can't I just use Request.Files..

May be as simple as http://dotnetslackers.com/articles/aspnet/Upload_multiple_files_using_the_HtmlInputFile_control.aspx

-- Lee

Lee Englestone
  • 4,545
  • 13
  • 51
  • 85

1 Answers1

0

if the posted form is multipart/form-data you can just check the Request.Files collection to check if there should be any files posted with your form :)

Pauli Østerø
  • 6,878
  • 2
  • 31
  • 48