[FIELDSET][LEGEND]引自:1楼[/LEGEND]
读者朋友:
您好,这个播放器可以换掉,这个例子中带的是我们自己做的一个简单播放器,你可以换成现在网络上比较流行的flash播放器,比如极酷、酷播等。
[/FIELDSET]
回复:
public static string GetFlashText(string url)
{
url = "player.swf?fileName=" + url;
string str =
"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='452' height='360' id='index' name='index'><param name='allowScriptAccess' value='always' /><param name='movie' value='" +
url + "'><embed src='" +
url +
"' id='index1' name='index1' type='application/x-shockwave-flash' swLiveConnect=true allowScriptAccess='always' width='452' height='360'></embed></object>";
return str;
}