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

IOS 上传图片到ASP.NET

ASP.NET服务端的代码:
[csharp]  
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. }   
 
补充:Web开发 , ASP.Net ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,