can i embed shockwave file in asp page?? How do i do it??? i am getting error message from macrmedia 8...
error message "The tag name: "embed" Not found in currently active version.[XHTML 1.0 frameset]"
can i embed shockwave file in asp page?? How do i do it??? i am getting error message from macrmedia 8...
error message "The tag name: "embed" Not found in currently active version.[XHTML 1.0 frameset]"
Short answer: yes — embedding is done in the page that ASP serves (ASP only builds the HTML), but the runtime and the browser/plugin determine whether the Shockwave/Flash content actually loads. The plugin error you saw points to a mismatch between the markup the player expects and the document your server is delivering. flagged the markup issue and showed the standards-based object approach; the practical fixes below extend that advice.
Practical checklist
Example: use a small JavaScript helper that writes the object/embed markup and performs version checks (this avoids embedding the old inline <embed> tag directly).
<script src="/scripts/swfobject.js"></script>
<div id="flashArea">Alternate content</div>
<script>
swfobject.embedSWF("movie.swf","flashArea","640","360","9.0.0");
</script> Cautions and modern context
Jump to Post— Member #114696EMBED tag is not supported in XHTML i mean eliminated from that. its not supported even in html 4. use html doctylpes to use embed.
EMBED tag is not supported in XHTML i mean eliminated from that. its not supported even in html 4. use html doctylpes to use embed.
Hi there,
you can use this code to EMBED shockwave file in XHTML 1.0
Valid Flash for XHTML 1.0 Strict (XHTML 1.1)
example
<object type="application/x-shockwave-flash" data="YOURFILE.swf" width="288" height="128">
<param name="movie" value="YOURFILE.swf" />
<img src="Alternate_FILE_NAME.gif" width="288" height="128" alt="Any thing" />
</object> Rahul Dev
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.