Why I call flash or video always failed [modified]
-
The following is my code: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <%--method 1--%> <div> <EMBED src="Flash/123.flv" style="HEIGHT: 331px; LEFT: 83px; TOP: 171px; WIDTH: 538px"> </div> <%--method 2--%> <div> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="150" height="280"> <param name="movie" value="Flash/123.flv"> <param name="quality" value="high"> <embed src="Flash/123.flv" width="150" height="280" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ></embed> </object> </div> </form> </body> </html> after run, only display a rectangle. I am sure,the path is right.
modified on Saturday, May 30, 2009 4:05 AM
-
The following is my code: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <%--method 1--%> <div> <EMBED src="Flash/123.flv" style="HEIGHT: 331px; LEFT: 83px; TOP: 171px; WIDTH: 538px"> </div> <%--method 2--%> <div> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="150" height="280"> <param name="movie" value="Flash/123.flv"> <param name="quality" value="high"> <embed src="Flash/123.flv" width="150" height="280" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ></embed> </object> </div> </form> </body> </html> after run, only display a rectangle. I am sure,the path is right.
modified on Saturday, May 30, 2009 4:05 AM
jason_mf wrote:
123.flv
This is no ASP.Net question. BTW, it should be a swf file and not flv.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
jason_mf wrote:
123.flv
This is no ASP.Net question. BTW, it should be a swf file and not flv.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.