Import Flash Image in Asp.Net both IE and Firefox
Hi friend,
i am working in Asp.Net. I need to import flash image in my application.
I find the code first.Its working in IE and find another code. Its working in
Firefox. But I need to run the file both IE and Firefox.
For IE :
Code:
<object height="400"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=8,0,0,0" style="width: 549px">
<param name="movie" value="daretoenter.swf" />
<embed src="daretoenter.swf" width="630px" height="500px"
type="application/x-shockwave-flash" pluginspage=
"http://www.macromedia.com/go/getflashplayer"></embed>
</object>
The above XHTML running in IE.
For Firefox :
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
id="MyMovie">
<param value="GDS.swf" />
<embed src="GDS.swf" width="795px" height="500px">
</embed>
</object>
The above code running in Firefox
I need urgent.
I hope ur's reply
Thanks
Re: Import Flash Image in Asp.Net both IE and Firefox