Click to See Complete Forum and Search --> : Question about asp.net capabilities
rutledj
03-15-2006, 07:15 AM
I'm quite new to this so forgive the dumb questions please.
Is it possible to display a shockwave type content and flash content in an asp.net page?
If so, what kind of component is used to do this.
I'm referring to asp.net 2.0, visual studio 2005.
Thanks,
Rut
Yes. sw and flash can be included in any html environment.
ASP.net and ASP both create client content (like HTML), so you can just include the call to the sw/flash file in the HTML output of the .net application.
In other words, ASP and .net and any other server side language for that matter, are not directly related to the ability to display sw and flash files.
lmf232s
03-15-2006, 03:48 PM
As well here is a flash file embeded into one of my pages.
<table width=302 height=301>
<tr>
<td align=center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"
id="Bobble_ED" width="100%" height="100%" align=left>
<param name="movie" value="Movie1.swf">
<param name="quality" value="high">
<param name="scale" value="exactfit">
<param name="salign" value="tl">
<param name="align" value="left">
<param name="bgcolor" value="black">
<embed name="Bobble_ED" src="Movie1.swf" align="left" bgcolor="black" swLiveConnect="true"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</object>
</td>
</tr>
</table>
This is the only thing that really needs to be set. The src of the <embed> tag.
<embed name="Bobble_ED" src="Movie1.swf"