How would you "embed" a ".swf" file in a regular html page?
asp.net is a server-side technology that sends plain html (with possibly some
javascript) to the browser.
some choices:
* plain, fixed html block in your aspx file.
* the same code, generated from codebehind, which would give you the option
to choose between some (existing) swf files.
* almost the same code, but with a reference to a second aspx file instead of
the swf. This new aspx retrieves the swf from your database, sets a correct
contenttype and uses Response.BinaryWrite to send the file to the browser.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.