asp.net 如何判断fileupload为空

2024-12-26 14:41:57
推荐回答(5个)
回答1:

使用下面代码就可以了,fileupload1.PostedFile != null&&fileupload1.PostedFile.ContentLength>0,验证有没有上传的数据,并且数据的大小不为0

回答2:

if(FileUpload1.FileName=="")
{
Page.ClientScript.RegisterStartupScript(GetType(),"","");
}

回答3:




然后js:
function ChkFile(){
if(document.getElementById("f1").value.length == 0){
alert("请选择上传文件");
return false;
}
}

回答4:

if (this.FileUpload1.FileName.ToString() == "")
{
Response.Write("");
return;
}

回答5:

这里有一个文件上传系统
你可以参考一下