gpt4 book ai didi

c# - asp.net多文件上传中如何设置上传文件数量限制?

转载 作者:行者123 更新时间:2023-12-04 00:35:06 25 4
gpt4 key购买 nike

我在 Asp.net 中使用 c# 进行多文件上传

 <asp:FileUpload ID="FileUpload2" multiple="multiple" class="form-control" runat="server" />

我想在上传时验证客户端选择的文件必须是 6。

最佳答案

function ValidateFile2(){
var fileCount = document.getElementById('FileUpload2').files.length;
if(fileCount > 10) // Selected images with in 10 count
{
alert("Please select only 10 images..!!!");
return false;
}
else if(fileCount <= 0) // Selected atleast 1 image check
{
alert("Please select atleat 1 image..!!!");
return false;
}

return true; // Good to go
}

Fiddle

关于c# - asp.net多文件上传中如何设置上传文件数量限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25562092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com