我在 ASP.NET 中有一个网站应用程序。我有两个 mp3 声音。一切都在计算机中工作(在本地主机中)。当我发布网站时,我没有错误,但按下按钮时,没有声音。我什么也听不见。我究竟做错了什么?谢谢
protected void Button1_Click(object sender, EventArgs e)
{
var firstVoice = new System.Windows.Media.MediaPlayer();
var secondVoice = new System.Windows.Media.MediaPlayer();
firstVoice.Open(new System.Uri(Server.MapPath("~/") + @"\first.mp3"));
firstVoice.Play();
System.Threading.Thread.Sleep(1500);
secondVoice.Open(new System.Uri(Server.MapPath("~/") + @"\second.mp3"));
secondVoice.Play();
secondVoice.Stop();
}
在这段代码中,我有两个声音同时播放。