如何将所需的验证器添加到ajax AsyncFileUpload?
如何将客户端所需的验证器添加到 asyncfileupload ,以强制用户在提交页面之前选择文件。
How to add client side required validator to asyncfileupload ,to enforce user to select file before submitting the page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用 C# 或 VB(而不是客户端 Javascript 或 JQuery 函数)在服务器端方法中设置隐藏文本框的文本。
You could also set the text of a the hidden textbox in a server side method using C# or VB, rather than a client side Javascript or JQuery function.
我使用RequiredFieldValidator 来验证不可见的文本框。 TextBox 在 OnClientUploadComplete 函数中填充任意文本。
您唯一不能做的就是在验证焦点时设置焦点。
该示例使用 jQuery。
I use a RequiredFieldValidator that validates an invisible TextBox. The TextBox is filled with an arbitrary text in the OnClientUploadComplete function.
The only thing you cannot is setting the focus when it is validated.
The example uses jQuery.