"图片上传"
if (this.FileUpload1.HasFile)
{
int MaxLength = 1024 * 1024;//最大为1M
string name = this.FileUpload1.FileName;//获取文件的名称如:panjun.doc panjun.gif
string type = name.Substring(name.LastIndexOf(".") + 1).ToLower();//获取文件的类型
if (this.FileUpload1.PostedFile.ContentLength > MaxLength)//限定上传大小为1MB
{
Response.Write("<script>alert('上传文件的大小超过了1MB的最大容量!请压缩后再上传!')</script>");
return;
}
if (type == "jpg" || type == "bmp" || type == "gif" || type == "png")
{
string filepath = MapPath("../upload/img/" + name);
if (!File.Exists(filepath))
{
this.FileUpload1.SaveAs(filepath);//这个是主要的完成上传的代码
}
else
{
Response.Write("<script>alert('文件已存在,请重命名后再上传!')</script>");
return;
}
}
else
{
Response.Write("<script>alert('你选择的文件格式不符合要求!')</script>");
return;
}
}
else
{
Response.Write("<script>alert('请选择一个图片文件!')</script>");
return;
}