如何从phonegap接收aspx页面中的文件

时间:2013-03-04 16:24:06

标签: asp.net cordova file-upload file-transfer

想要帮助 我尝试使用cordova中的FileTransfer API从Windows Phone 7上传文件,并按照文档here中的步骤进行操作

但是我使用aspx页面作为移动应用程序的服务我不知道如何在aspx页面中接收文件 这个 是encodeURI( “http://some.server.com/upload.php”) 我改为 是encodeURI( “http://some.server.com/upload.aspx”)

有谁知道?

1 个答案:

答案 0 :(得分:0)

您应该使用Request.Files集合:

HttpPostedFile file = Request.Files["file"];