embed中 src属性动态更改。

只需在源代码中加入下面加粗的代码:
<embed runat="server" id="embed1" src="2.jpg"
type="audio/x-pn-realaudio-plugin" console="chip1"
controls="imagewindow" width=320 height=240 autostart=true align="middle">
</embed>
然后再对应的.cs程序中响应事件(比如button)中加入
this.embed1.Attributes["src"]="d.mp3"//举个例子即可完成。
原文地址:https://www.cnblogs.com/activities/p/2511343.html