在网页上播放swf文件

时间:2014-09-14 12:54:52

标签: asp.net flash

嘿伙计们我试图在我的网页上播放.swf文件我已经尝试使用HTML嵌入它并且它可以工作。但是,无论如何在asp.net中按钮点击事件后播放.swf文件?

2 个答案:

答案 0 :(得分:0)

在你开始使用flash之前我可以请你阅读这个http://occupyflash.org/,然后投入一点时间研究html5(特别是画布):) ... http://www.williammalone.com/articles/flash-vs-html5-canvas-drawing/这个http://webdesign.about.com/od/html5tutorials/a/canvas-vs-svg-vs-flash.htm会给你一个良好的开端。

修改

如果没有看到您当前的代码,我无法给出准确答案,但这应该有效:

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body>
    <video src='insert-route-to.swf' id='insert-id-here' controls>
      Your browser does not support HTML5 videos please Upgrade.
    </video>
    <button onclick="document.getElementById('insert-id-here').play()">Play</button>
    <button onclick="document.getElementById('insert-id-here').pause()">Pause</button>
  </body>
</html>

答案 1 :(得分:0)

点击按钮

Response.redirect("file path");

类似的东西:

Response.redirect("Video/abc.swf");

其中&#34; Video&#34;是项目文件夹中的文件夹名称和&#34; abc&#34;是文件名。