在Asp.Net上按顺序播放音频文件(一个接一个)
我有一个要求,我需要在 ASP.Net 页面上播放多首音频歌曲。任何人都可以建议实现此目的的最佳方法吗?
我有页面。 在那里,我将在网格视图中显示歌曲列表。 网格视图包含复选框和歌曲名称。 用户应该能够选择多个复选框并单击播放。
当用户单击新弹出窗口上的播放按钮时,我必须一一播放用户选择的所有音频歌曲。
我会感谢你的帮助。
谢谢, 文卡特。
I have a reqiurement, I need to play multiple audio songson ASP.Net page.Can anyone suggest the best way to implement this.
I have page. There I will display the list of the songs in grid view. The gridview contains checkboxes and songs name. User should able to select the multiple check boxes and click play.
When ever user click play button on new popup window I have to play the all audio songs selected by user one by one.
I will appreciate your help.
Thanks,
Venkat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我很想使用 jPlayer - jQuery 音频播放器插件。
I'd be tempted to use jPlayer - jQuery audio player plugin.
ASP.NET 是服务器端的。 要在访问者的计算机上播放声音,您需要使用运行客户端的东西。 JavaScript、Flash、Java 等。如果您在 ASP.NET 代码中播放声音,它将在服务器上播放。 一点用处都没有……明白了吗? “远程?” 哈哈!
ASP.NET is server-side. To play a sound on the visitor's computer, you need to use something that runs client-side. JavaScript, Flash, Java, etc. If you play a sound in your ASP.NET code, it will play on the server. Not remotely useful... Get it? "Remotely?" Haha!
音频是什么格式?
最好的方法是动态创建播放列表文件 (.asx|.m3u) 并将其提供给浏览器/媒体播放器。
What format is the audio in?
The best way would be to dynamically create a playlist file (.asx|.m3u) and serve it to the browser/media player.
在javascript中使用mediaplayer(silverlight)的
mediaEnded
事件Use
mediaEnded
Event of mediaplayer(silverlight) in javascript