读书人

IOS 下传图片到ASP.NET

发布时间: 2013-03-06 16:20:31 作者: rapoo

IOS 上传图片到ASP.NET
ASP.NET服务端的代码:

1. protected void Page_Load(object sender, EventArgs e)  2. {  3.     if (Request.Files.Count == 0)  4.     {  5.         Response.Write("none file");  6.     }  7.     else  8.     {  9.         HttpPostedFile file = Request.Files["img"];  10.         String filename = Request.Form["name"];  11.         file.SaveAs(MapPath("~/"+filename+".png"));  12.           13.         Response.Write("ok");  14.     }  15. } 

读书人网 >操作系统

热点推荐