SDK |
Documentation |
Writing Server Scripts with ASP.NETUse Plain TextThe first thing you must do in your ASP script is to set the content type to plain text. This simplifies the text that is sent back to ListenUp, making it easier to parse. These header values must be set before you send any other text! Here is some ASP code that may work for you: response.ContentType = "text/plain" response.Charset = "ISO-8859-1" Receiving Uploaded FilesTerry Ferris offers this simple example that uses the "System.Web" Namespace from Microsoft: Dim File As System.Web.HttpPostedFile = Request.Files(0) File.SaveAs(FilePath & File.FileName) This techique is described in more detail in these articles:
Other resources for receiving uploaded files include:
|