Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to embed swf files dynamiclly to the asp.net pages, can anybody help
Posted
Updated 15-Feb-13 20:07pm
v3

 
Share this answer
 
v2
Following should help you out:
How To Play SWF File In Asp.Net[^]
How to Play .swf file in ASP.NET[^]

Something like:
HTML
<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="600" height="500">
  <param name="movie" value='video/<%#Eval("videos")%>' />
  <param name="quality" value="high" />
  <embed src="<% =swfFileName%>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
  type="application/x-shockwave-flash" width="700px" height="550px"
  </embed>
</object>
 
Share this answer
 

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