Using Flash movie in aspx pages
The following code snippet is embedded a flash movie in aspx page.
Paste the following lines in your aspx - design page
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="name" width="468" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" height="60">
<param value="http://www.msdotnetheaven.com/shubhhostingDiwali.swf" name="movie"/>
<param value="high" name="quality"/>
<param value="transparent" name="wmode"/>
<embed
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?
P1_Prod_Version=ShockwaveFlash" quality="high" type="application/x-shockwave-flash" height="60" src="http://www.msdotnetheaven.com/shubhhostingDiwali.swf" width="468" wmode="transparent" name="name">
</embed>
</object>
In above Object is an html tag which embedded media in web-pages. Classid is the id of embedded object. Internally it locates for macromedia/adobe flash player.