Flash Player Custom Control for ASP.NET 2.0

Introduction:

This article describes a quick and simple approach to creating a custom web control used to display shockwave flash files within an ASP.NET page.  Whilst the article and demonstration project are focused upon displaying a shockwave flash (SWF) file, the basic idea is applicable to any sort of object that you may wish to embed within an ASP.NET 2.0 page.

Whilst it is entirely possible to code the page to display flash without using a custom control, having the control handy simplifies the process to the point where someone using it need only drop it onto the page and set a couple of properties within the IDE (or at runtime) to bring flash to the page.

Getting Started:

In order to get started, open up the Visual Studio 2005 IDE and start a new project.  From the new project dialog (Figure 1), under project types, select the "Windows" node from beneath "Visual Basic", then select the "Web Control Library" template in the right hand pane.  Key in a name for the project and then click "OK".

Once the project has opened; right click on the solution and click on the "Add" menu option, and then select "New Item".  When the "Add New Item" dialog appears (Figure 2), select the "Web Custom Control" template, after selecting the template, key "EmbeddedObject.cs" into the name field and then click "Add" to close the dialog.  You may now delete the default web control that was created  when the project was originally initialized from the template.

At this point, we should have an open web control library project with a single web control named "EmbeddedObject.cs" in that project.  One last step prior to writing the code for this project will be to add in one needed reference.  To add this reference, double click on the "My Project" icon in the solution explorer to open "My Project", from here, select the "References" tab, and then click the "Add" button.  When the "Add Reference" dialog opens, select the .NET tab, and search down the list until you find the "System.Design" reference.  Select this library and click on the "OK" button.

Fig-1.JPG
 
Figure 1:  Visual Studio 2005 New Project Dialog

Fig-2.JPG

Figure 2:  Add New Item Dialog

Navigate back to the "EmbeddedObject.cs" file and, at the top of the file, add in the import statement highlighted below:

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Text;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.Design;

 

[DefaultProperty("Text")]

    [ToolboxData("<{0}:EmbeddedObject runat=server></{0}:EmbeddedObject>")]

public class EmbeddedObject : WebControl

 

We are now ready to add the code necessary to make this control functional.  First off, we need to create a single private member variable; this variable will be used to contain the path to the shockwave flash (SWF) file that the user wants to pass to the control.  To accomplish this step, create a "Declarations" region and key in the following variable declaration:

 

#Region "Declarations"

 

   private string mFilePath;

 

#End Region

Once the variable is declared, we  will need to provide a public property to expose the control property to the control user; in order to accomplish this step, create a "Properties" region and key in the following code:

#Region "Properties"

[Category("SWF Source File")]

        [Browsable(true)]

        [Description("Set path to SWF source file.")]

        [Editor(GetType(System.Web.UI.Design.UrlEditor), GetType(System.Drawing.Design.UITypeEditor)]

 

public string FilePath

        {

            get { return mFilePath; }

            set { mFilePath= value; }

        }

 

#End Region

Note that, in the attributes section, the code specifies an editor and further that the editor specified is defined as the URL Editor.  Adding this attribute to the control specifies to the IDE how the property is to be edited; in this instance, when the control user sets the File Path property for the control, the property grid will display a button with an ellipsis in it at the right hand side of the text box.  If the user clicks on the button, the IDE will open the URL editor and will permit the user to use that editor to navigate to the SWF file and set the File Path property through that editor's dialog.   Properties set in this manner will be persisted within the control user's project.

[Editor(GetType(System.Web.UI.Design.UrlEditor), GetType(System.Drawing.Design.UITypeEditor)]

At this point, the only thing left to do is to define how the control will be rendered.  To complete this step, create a "Rendering" region and, within this region, override the RenderContents sub with the following code:

#Region "Rendering"

 

protected override void RenderContents(HtmlTextWriter writer)

        {

             try

             {

                 StringBuilder sb = new StringBuilder();

                 sb.Append("<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000");

                 sb.Append("codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,2,0 Width = " & Width.Value.ToString() & " Height = " & Height.Value.ToString() & " > ");

                 sb.Append("<param name=movie value=" & FilePath.ToString() & "> ");

                 sb.Append("<param name=quality value=high> ");

                 sb.Append("<param name=BGCOLOR value=#000000>");

                 sb.Append("<param name=SCALE value=showall>");

                 sb.Append("<embed src=" & FilePath.ToString() & " = high ");

                 sb.Append("pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash ");

                 sb.Append("Width = " & Width.Value.ToString() & " ");

                 sb.Append("Height = " & Height.Value.ToString() & " ");

                 sb.Append("bgcolor=#000000 ");

                 sb.Append("scale= showall></embed></object>");

                 writer.RenderBeginTag(HtmlTextWriterTag.Div);

                 writer.Write(sb.ToString());

                 writer.RenderEndTag();

             }

             catch(Exception ex)

             {

                 writer.RenderBeginTag(HtmlTextWriterTag.Div);

                 writer.Write("Custom Flash Control");

                 writer.RenderEndTag();

 

             }           

        }

#End Region

Within this code there are a few things worth looking at; first, you can see how the embedded object tag is created  and it does not take too much imagination to figure out that you can embed any valid object using this same approach.  The string builder collects three variables from the control, the File Path is passed to the object's source  and the controls height and width are also collected and passed to the object tag.  The rest of the parameters are canned in this demonstration but could be replaced with additional properties which could also be set at design time if so desired.

Having defined the contents of the object tag, the only detail remaining is to put the control on the rendered page.  This is accomplished in the three lines following the definition of the string builder:

writer.RenderBeginTag(HtmlTextWriterTag.Div);
writer.Write(sb.ToString());
writer.RenderEndTag();

In this example, the HTML writer is set up to place an opening Div tag, within the Div, the object defined in the string builder is written to the rendered page, and in the last line, the Div is closed.

The control is now complete.  Prior to testing the control, rebuild the project.  Once that has been completed and any errors encountered are repaired, it is time to test the control.  To test the control, add a new web site project to the web control library project currently open.  Once the test web site has been created, set the test project as the start up project by right clicking on the web site solution in the solution explorer and selecting the "Set as Start Up Project" menu option.  Next, locate the Default.aspx page in the web site solution, right click on this page and select the "Set as Start Page" menu option.

In the download you will find two files that you will need to add to the root of the web site solution.  These files are entitled, "cybertrick.swf" and "cybertrick.txt".  You may add the files to the project by right clicking on the web site solution in the solution explorer and selecting "Add Existing Item".

Open the Default.aspx page for editing.  Locate the newly created control in the toolbox (it should be at the top) and drag the "EmbeddedObject" control onto the page (Figure 3). 

CC_EmbeddedObject3.gif
 
Figure 3:  Custom Control in Toolbox

You may now click on the embedded object control and set its height, width, and file path properties.  For this demo, the SWF file provided was designed to be 300 pixels tall and 600 pixels wide so set the height and width properties to hold 300 and 600.  Next, click on the File Path property button to open the URL editor dialog.  From here, select the "cybertrick.swf" to point the file path property to this file.

Build the application and run it; you should now be looking at a Flash presentation displayed within the custom control (Figure 4).

CC_EmbeddedObject4.gif

Figure 4:  Flash in the Custom Control

NOTE: THIS ARTICLE IS CONVERTED FROM VB.NET TO C# USING A CONVERSION TOOL. ORIGINAL ARTICLE CAN BE FOUND ON VB.NET Heaven (http://www.vbdotnetheaven.com/).


Similar Articles