Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I want to place .swf file in table cell. Please tell me how to place swf file in my page
Posted
Updated 9-Feb-11 1:37am
v2

you need a "embed object" for that. Search on that.
 
Share this answer
 
Comments
Manfred Rudolf Bihy 9-Feb-11 7:52am    
Good hint! 5+
Hi Nikunj,

Please try the following
XML
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
                                   width="200" height="100">
                                   <param name="movie" value="<% =swfFileName%>" />
                                   <param name="quality" value="high" />
                                   <embed src="<% =swfFileName%>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
                                       type="application/x-shockwave-flash" width="200" height="100"></embed>
                               </object>


Or you may refer following
How To Play SWF File In Asp.Net[^]


Thanks,
Imdadhusen
 
Share this answer
 
Comments
Manfred Rudolf Bihy 9-Feb-11 7:52am    
Good answer! 5+
Sunasara Imdadhusen 9-Feb-11 8:07am    
If this would be really helpful and given solution then provide Vote and Make Accepted Answer as well.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900