想要帮助 我尝试使用cordova中的FileTransfer API从Windows Phone 7上传文件,并按照文档here中的步骤进行操作
但是我使用aspx页面作为移动应用程序的服务我不知道如何在aspx页面中接收文件 这个 是encodeURI( “http://some.server.com/upload.php”) 我改为 是encodeURI( “http://some.server.com/upload.aspx”)
有谁知道?
答案 0 :(得分:0)
您应该使用Request.Files集合:
HttpPostedFile file = Request.Files["file"];