Receiving multipart posted data

  • Thread starter Thread starter Guy
  • Start date Start date
G

Guy

I have a small problem. A site (not mine) is posting my site multipart data
(file). My site is ASP.NET, the other site isn't (in fact it's a VXML
Server).

I have no problem uploading files from my ASPX web page, but how does one
save multipart data posted *to* a ASP.NET site from a non ASP.NET site ?

..NET is easy on us to get the file sent by the File Input Server Side
control, but what happens when this control is not on a ASPX site ?

Thanks!
 
if they are using standard form post with muti-part file data, then you just
use the File Input Server Controls, if not then write a httphandler.

-- bruce (sqlwork.com)
 
Back
Top