gpt4 book ai didi

c# - Number of Uploaded files 功能不显示错误信息

转载 作者:行者123 更新时间:2023-12-04 08:54:59 25 4
gpt4 key购买 nike

我试图将可以上传的文件数限制为 2。我有以下验证器和代码来解决此问题:

  <asp:ValidationSummary runat="server" ID="ValidationSummary1" 
DisplayMode="BulletList" ShowMessageBox="false" ShowSummary="True" CssClass="alert alert-danger" />

<asp:FileUpload runat="server" ID="UploadPDF" AllowMultiple="true" accept=".pdf" />

<asp:CustomValidator Display="None" ID="customValidatorUpload" runat="server" ErrorMessage="Only five files can be uploaded" ControlToValidate="UploadPDF" ClientValidationFunction="ValidateFile2();" />
下面是 ValidateFile2() 函数:
   <script>
function ValidateFile2(sender, args) {

var fileCount = document.getElementById('UploadPDF').files.length;
if (fileCount > 2)
{
args.IsValid = false;

}
else if (fileCount <= 0)
{
args.IsValid = false;
}

args.IsValid = true;
}
</script>
当我尝试上传 2 个以上的文件时,我没有看到任何错误消息。我不确定我做错了什么。
我试着把
console.log(fileCount);
在 ValidateFile2 函数中,这是我在浏览器控制台下看到的错误:
enter image description here
这就是我检查元素时看到的:
enter image description here
uploadcerts 是我的页面的名称。
任何帮助将不胜感激。

最佳答案

这就是我为解决这个问题所做的。我从 ValidateFile2 函数中删除了括号,代码立即开始工作。以下是更新后的代码:

  <asp:ValidationSummary runat="server" ID="ValidationSummary1" 
DisplayMode="BulletList" ShowMessageBox="false" ShowSummary="True" CssClass="alert alert-danger" />

<asp:FileUpload runat="server" ID="UploadPDF" AllowMultiple="true" accept=".pdf" />

<asp:CustomValidator Display="None" ID="customValidatorUpload" runat="server" ErrorMessage="Only five files can be uploaded" ControlToValidate="UploadPDF" ClientValidationFunction="ValidateFile2" />

关于c# - Number of Uploaded files 功能不显示错误信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63876777/

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