asp.net音频播放代码,兼容HTML5以及非HTML5浏览器

来源:互联网 发布:淘宝上的实木家具 编辑:程序博客网 时间:2024/05/16 06:40

代码截图

支持HTML5浏览器效果图

不支持HTML5浏览器效果图



前台代码:

<span style="font-family:Microsoft YaHei;font-size:18px;"><asp:Panel ID="plSong" runat="server" Visible="false" Style="text-align: center;">  <audio controls="controls" autoplay="autoplay">     <source src="/<%=ViewState["filePath"] %>" type="audio/mp3" autostart=true />     <embed src="/<%=ViewState["filePath"] %>"  autostart=true height="30" width="100%"/>  src路径必须用/,不能用\  </audio></asp:Panel></span>



后台代码:

<span style="font-family:Microsoft YaHei;font-size:18px;">ViewState["filePath"] = (ConfigurationManager.AppSettings["FilePath"] + e.CommandArgument.ToString()).Replace("\\", "/");this.plSong.Visible = true;</span>


0 0
原创粉丝点击