Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP page that receives files programmatically?

Status
Not open for further replies.

theDude82

Programmer
Mar 14, 2005
1
0
0
GB
Hi,

I want to write an asp page that receives files. I have a client program that sends a file...

WebClient myWC = new WebClient();

byte[] responseArray = myWebClient.UploadFile("
Does anyone out there know how the asp page should be written (ar at least point me to where I can find out?)I've been searching everywhere, google, MSDN and I can't find anything that can help.

Many thanks in advance!
dude
 
I'm not shure what http method is used to send the file, but I would say it ends up in the Request object on the ASP page. You could look into the Forms property, the InputStream property and the Headers property.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top