HOW TO: Transmit file via HTTPResponse and HTTPRequest

  • Thread starter Thread starter SteveR
  • Start date Start date
S

SteveR

I need some help getting started POSTing data from aspx page.

From an aspx page (Send.aspx), I would like POST the contents of a
file (i.e., file resides in some directory) to another page
(Process.aspx). The other page would read the contents of the
InputStream (?), process the data within the stream, and send a
response back to the requesting URI.

How do I form the request the request in Send.aspx?

How do I handle the request in Process.aspx so I can read the input
stream respond back to Send.aspx with the results?

TIA

Steve
 
Back
Top