Thursday, 28 February 2013

How to add Flash file in Website in ASP.NET


Add flash image in the website, makes attractive. In ASP.NET it can be add easily. For this add any Flash (.swf) file extension file to solution explorer of the website.
Add write the code inside Form tag in source page as given below-

<asp:Panel ID="Panel1" runat="server">
<param name="movie" value="Vinod.swf" />
<param name="scale" value="exactfit" />
<param name="AllowScriptAccess" value="always" />
<embed src="Vinod.swf" width="750" height="96"
scale="exactfit" allowscriptaccess="always" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" />
</asp:Panel>

No comments:

Post a Comment