ASP.NET中插入Flash

在需要插入Flash的地方插入以下代码:
 1<OBJECT codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
 2         classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
 3        <PARAM NAME="_cx" VALUE="14000">
 4        <PARAM NAME="_cy" VALUE="10500">
 5        <PARAM NAME="FlashVars" VALUE="">
 6        <PARAM NAME="Movie1" VALUE="Flashimg/ViewImage.swf">
 7        <PARAM NAME="Src" VALUE="Flashimg/ViewImage.swf">
 8        <PARAM NAME="WMode" VALUE="Transparent">
 9        <PARAM NAME="Play" VALUE="-1">
10        <PARAM NAME="Loop" VALUE="-1">
11        <PARAM NAME="Quality" VALUE="High">
12        <PARAM NAME="SAlign" VALUE="">
13        <PARAM NAME="Menu" VALUE="0">
14        <PARAM NAME="Base" VALUE="">
15        <PARAM NAME="AllowScriptAccess" VALUE="">
16        <PARAM NAME="Scale" VALUE="ShowAll">
17        <PARAM NAME="DeviceFont" VALUE="0">
18        <PARAM NAME="EmbedMovie" VALUE="0">
19        <PARAM NAME="BGColor" VALUE="">
20        <PARAM NAME="SWRemote" VALUE="">
21        <PARAM NAME="MovieData" VALUE="">
22        <PARAM NAME="SeamlessTabbing" VALUE="1">
23        <PARAM NAME="Profile" VALUE="0">
24        <PARAM NAME="ProfileAddress" VALUE="">
25        <PARAM NAME="ProfilePort" VALUE="0">
26            </OBJECT>
原文地址:https://www.cnblogs.com/huangwen/p/645603.html