Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

flash movie in an asp page

Status
Not open for further replies.

skrobbert

Technical User
Jun 7, 2001
29
0
0
NL
Please help me. I'm a newbie in asp and I have this problem.

I have this asp page with some information and this page works perfect. I want to insert a small flash movie but when I insert the script the page doesn't work anymore. It was just a test but what am I doing wrong.
This is the flash part of my asp page:

Response.write(&quot;<OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
codebase=&quot; WIDTH=250 HEIGHT=112>
<PARAM NAME=movie VALUE=&quot;test.swf&quot;> <PARAM NAME=quality VALUE=best> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src=&quot;images/fks.swf&quot; quality=best bgcolor=#FFFFFF WIDTH=536 HEIGHT=216 TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;</OBJECT>
Response.write(&quot;</td>&quot;)
response.write(&quot;<td valign=top rowspan=2 width='225'>&quot;)


Can anyone help me please. Thanks
Robbert van Spronsen
 
replace every &quot; with &quot;&quot;

in your response.write() statement -- it's reading &quot; as the end of a string, but when you put two of them, vbscript will output &quot;

I also don't see your closed ) -- that might help also.

:)
Paul Prewett
penny.gif
penny.gif
 
Delete the Semicolons

eg:
flash/swflash.cab#version=5,0,0,0&quot;;


Steve

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top