在Asp.Net上按顺序播放音频文件(一个接一个)

发布于 2024-07-18 08:34:44 字数 227 浏览 3 评论 0原文

我有一个要求,我需要在 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 技术交流群。

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

发布评论

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

评论(4

南风几经秋 2024-07-25 08:34:44

我很想使用 jPlayer - jQuery 音频播放器插件。

I'd be tempted to use jPlayer - jQuery audio player plugin.

溺孤伤于心 2024-07-25 08:34:44

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!

杯别 2024-07-25 08:34:44

音频是什么格式?

最好的方法是动态创建播放列表文件 (.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.

把时间冻结 2024-07-25 08:34:44

在javascript中使用mediaplayer(silverlight)的 mediaEnded 事件

Use mediaEnded Event of mediaplayer(silverlight) in javascript

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文