No flash img displayed using shockwave object in asp.net
Hi all,
I write the below code for shockwave object in asp.net. This code all know that loading flash file in asp.net using shockwave object.But the below code is running correctly.But no error in the compile time.But no flash movie doesn't displayed.I give correct path.Can u tell me?Whats the problem is going?
<form id="Form1" method="post" runat="server">
<!-- SWF in ASP.NET -->
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
WIDTH="30" HEIGHT="56" id="myMovieName" VIEWASTEXT>
<PARAM NAME=movie VALUE="swf_files/admin.swf">
<PARAM NAME=quality VALUE=autohigh>
<PARAM NAME=bgcolor VALUE=black>
<PARAM NAME=”menu” VALUE=”false” />
<PARAM NAME=FlashVars VALUE=”init=yes&check=true”>
<EMBED src="swf_files/admin.swf" FlashVars=”init=yes&check=true” quality=high bgcolor=#FFFFFF WIDTH="30" HEIGHT="56"
NAME="myMovieName" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
</form>
Thanks :)
Re: No flash img displayed using shockwave object in asp.net
Does swf_files/admin.swf exist? Have you tried the full relative path, like http://localhost/whatever/swf_files/admin.swf ?
Does that exist?
Re: No flash img displayed using shockwave object in asp.net
yes, i got it menthak
Thanks for solution:)
Re: No flash img displayed using shockwave object in asp.net
Re: No flash img displayed using shockwave object in asp.net
I give a path in outside.Now i give a flash file inside of the Asp.net website.Now its perfectly working.
Thanks for ur time