当前位置:编程学习 > wap >>

iPhone开发笔记(12)利用.net实现服务端接收上传的图片并保存

  说实话,我不大清楚.aspx和.asmx究竟哪个比较好。我在这里用的是.aspx,因为我觉得更方便一些。

    

[plain]
public partial class upload : System.Web.UI.Page 

    protected void Page_Load(object sender, EventArgs e) 
    { 
        HttpFileCollection MyFilecollection = Request.Files; 
 
        MyFilecollection[0].SaveAs(Server.MapPath("~/ImageStore/" + MyFilecollection[0].FileName)); 
 
    } 

     这样iOS端通过Post方式传递过来的图片就保存在服务器端了。

补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,