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共享 中设定
在多普打手机上上传成功
属于智能设备的编程,没怎么接触