开发者

validation in wmp files

开发者 https://www.devze.com 2022-12-10 11:43 出处:网络
i have windows media player in my application.i want to allow only the supported files for the player, to upload.i want to play photos,videos and audio files with windows media player.how can i do thi

i have windows media player in my application.i want to allow only the supported files for the player, to upload.i want to play photos,videos and audio files with windows media player.how can i do this?how can i validate the uploading files开发者_如何转开发? please help me


use Regular Expression

<asp:RegularExpressionValidator ID="rexpImageE" Display="Dynamic" runat="server"
        ControlToValidate="fupImageE" ErrorMessage="Only .gif, .jpg, .jpeg, .png, .tiff, .mp3, .dat"
        ValidationExpression="(.*\.([Gg][Ii][Ff])|.*\.([Jj][Pp][Gg])|.*\.([Bb][Mm][Pp])|.*\.([pP][nN][gG])|.*\.([tT][iI][iI][fF])|.*\.([mM][pP][3])|.*\.([dD][aA][tT])$)"></asp:RegularExpressionValidator>

and you can add more extensions to add something like before $ sign |.*.([dD][aA][tT])

0

精彩评论

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

关注公众号