asp.net FileUpload 上传文件的格式,大小的限制

if (!this.fuHeadImg.PostedFile.ContentType.ToLower().Contains("image/") || this.fuHeadImg.PostedFile.ContentLength > 1024 * 1024 * 3)
            {
                ClientScript.RegisterStartupScript(GetType(), "", "alert('只能上传小于3MB的图片文件')", true);
            }

你可能感兴趣的:(asp.net)