用.NET写手机上传图片到服务器程序

2024-12-22 09:07:02
推荐回答(2个)
回答1:

protected void Button1_Click(object sender, EventArgs e)
{

string fullFileName = this.FileUpload1.FileName;
string fileName = fullFileName.Substring(fullFileName.LastIndexOf("\\") + 1);
this.FileUpload1.PostedFile.SaveAs(Server.MapPath("Upload") + "\\" + fileName);
Button1 为上传按纽! }
"Upload"是你服务器上的网站根目录下存放存放文件的目录例如webroot\upload
另外upload 目录的权限要设为可写 可在资源管理器中 属性-web共享 中设定

在多普打手机上上传成功

回答2:

属于智能设备的编程,没怎么接触