Is shockwave object used in asp.net
:) Hi friends,
I insert shockwave object in windows application for play a flash file.
But i couldnt put the shockwave object in web application.What reason?
I select components many times.But while see the toolbox there is no shockwave flash object.Is not possible or possible to put a flash object in asp.net web application.
Thanks
:)
Re: Is shockwave object used in asp.net
You need to use HTML code like this for your SWF:
Code:
<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>