如何在coolite FileUploadField中设置文件类型
我在我的项目中使用了coolite。并通过FileUploadField控件上传文件。 我必须为文件类型添加一个过滤器,以便用户从选择文件对话框中只能看到 jpeg 和 bmp 文件。 还没有找到如何在网络上实现这一点。 谁能给我一个关于这个的提示吗?
I using coolite in my project. And upload files through the FileUploadField control.
I have to add a filter for the file type, so that the user could see only jpeg and bmp files from the choose file dialog.
Havent found how this can be implemented in the web.
Can anyone give me a hint on this one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,通过出现的标准浏览文件框是不可能的,但是您可以使用 RegularExpressionValidator 来验证文件名(下面的正则表达式未经测试):
Unfortunately, this isn't possible through the standard browse-for-file box that appears, however you can instead use a RegularExpressionValidator to validate the filename (regex below untested):