当前位置: 代码迷 >> 综合 >> asp.net FileUpload 判断上传文件是否为图片
  详细解决方案

asp.net FileUpload 判断上传文件是否为图片

热度:14   发布时间:2023-12-08 14:26:40.0


                if (!FileUpload1.HasFile){this.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('请选择上传图片!');", true);return;}if (FileUpload1.PostedFile.ContentType.ToLower().IndexOf("image/") == -1){this.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('请上传图片!');", true);return;}