ASPNetMedia Suite
ASPNetFlash
Downloads
Demonstrations
Manual
Welcome to ASPNetFlash
Getting Started
ASPNetFlash .NET WebControl
Installation Guide
Object Reference
Example Code
JavaScript API
ActionSpeak Flash Component
Registration Guide
Tutorials
Support
Register
Our Story
ASPNetFlash WebControl: Example Code (ASPX File)
ASP.NET 2.0 (Visual Studio 2005)
[ASPX]
<%@ Page Language="C#" %> <%@ Register Assembly="ASPNetFlash.NET2" Namespace="ASPNetFlash" TagPrefix="ASPNetFlash" %> <!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>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <ASPNetFlash:Flash ID="Flash1" runat="server" MovieURL="~/cube.swf"> <FlashVariables> <ASPNetFlash:FlashVariable Name="FlashVarName">FlashVarValue</ASPNetFlash:FlashVariable> </FlashVariables> <HTMLAlternativeTemplate> <asp:ImageButton ID="ImageButtonGetFlashPlayer" runat="server" PostBackUrl="http://www.adobe.com/go/getflashplayer" ImageUrl="~/images/get_flash_player.gif" /> </HTMLAlternativeTemplate> </ASPNetFlash:Flash> </form> </body> </html>
ASP.NET 1.x (Visual Studio 2002/2003)
[ASPX]
<%@ Page Language="C#" %> <%@ Register Assembly="ASPNetFlash.NET1" Namespace="ASPNetFlash" TagPrefix="ASPNetFlash" %> <!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>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <ASPNetFlash:Flash ID="Flash1" runat="server" MovieURL="~/cube.swf"> <FlashVariables> <ASPNetFlash:FlashVariable Name="FlashVarName" Value="FlashVarValue"></ASPNetFlash:FlashVariable> </FlashVariables> <HTMLAlternativeTemplate> <asp:ImageButton ID="ImageButtonGetFlashPlayer" runat="server" PostBackUrl="http://www.adobe.com/go/getflashplayer" ImageUrl="~/images/get_flash_player.gif" /> </HTMLAlternativeTemplate> </ASPNetFlash:Flash> </form> </body> </html>