如何在coolite FileUploadField中设置文件类型

发布于 2024-09-27 11:11:38 字数 133 浏览 3 评论 0原文

我在我的项目中使用了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葮薆情 2024-10-04 11:11:38

不幸的是,通过出现的标准浏览文件框是不可能的,但是您可以使用 RegularExpressionValidator 来验证文件名(下面的正则表达式未经测试):

ValidationExpression="^(.*)\.(([jJ][pP][eE]?[gG])|([bB][mM][pP]))$"

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):

ValidationExpression="^(.*)\.(([jJ][pP][eE]?[gG])|([bB][mM][pP]))$"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文