开发者

Setting the filetype in ASP.net fileupload

Is it possible to limit the asp.net fileupload dialog to view only XML files? (Filer, .xml only)

Note: Not to check whether the extension is .xml, but to actually only l开发者_运维技巧et the user view xml files in the dialog.


It is not possible.


Unfortunately you cannot set a filter for the file browser dialog - you have to use JavaScript or server-side validation for extension.

Upd. You can use RegularExpression validator with the following regex string:

@"(.*?)\.(jpg|jpeg|png|gif)$"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜