Click here to Skip to main content
Licence 
First Posted 12 Dec 2006
Views 73,165
Bookmarked 70 times

SWFObject Server Control for ASP.NET

By | 15 May 2007 | Article
A server control that implements the SWFObject JavaScript library.

Introduction

SWFObject is a JavaScript library for dynamically embedding Flash content in your HTML pages. It's cross-browser capable and it gets rid of the annoying 'Click to enable control' message in Internet Explorer, plus other useful features. For more details, visit this blog.

Using the code

This is how you would use SWFObject in an ASP.NET page:

<div id="container">
   <script type="text/javascript">
      var flash = new SWFObject(<%= ("\"" + 
                  ResolveUrl("~/swf/movie.swf") + 
                  "\"") %>

Using the server control I built, the code would look like this:

<div id="container" runat="server">
   <flash:SWFObject id="flash1" runat="server" 
           Movie="~/swf/movie.swf" Width="600" 
           Height="200" FlashVersion="6">
      <flash:SWFParameter runat="server" Name="menu" Value="false" />
      <flash:SWFVariable runat="server" Name="approot" 
             Value='<%#Request.ApplicationPath %>' />
   </flash:SWFObject>
</div>

Note that you can use databinding and add as many parameters and variables as you want. Here is the source code:

[ParseChildren(typeof(SWFInput))]
[PersistChildren(true)]
public class SWFObject : Control {

   string _containerID = null, 
       _movie = "", _width = "", _height = "", _flashVersion = "";
   
   WModeEnum wmode = WModeEnum.NotSet;
   bool _menu = false;

   public string ContainerID { get { return _containerID; } set { 
       _containerID = value; } }
   public string Movie { get { return _movie; } set { _movie = value; } }
   public string Width { get { return _width; } set { _width = value; } }
   public string Height { get { return _height; } set { _height = value; } }
   public string FlashVersion { get { return _flashVersion; } set { 
       _flashVersion = value; } }

   public bool Menu { get { return _menu; } set { _menu = value; } }
   public WModeEnum WMode { get { return wmode; } set { wmode = value; } }
   
   // If you don't implement a webresource for 
   //the javascript file then delete this method.
   protected override void OnPreRender(EventArgs e) {
      base.OnPreRender(e);

      Page.ClientScript.RegisterClientScriptInclude(
         this.GetType(),
         "swfobject.js",
         Page.ClientScript.GetWebResourceUrl(this.GetType(), "swfobject.js")
      );
   }

   public override void RenderControl(HtmlTextWriter writer) {

      string movie = ResolveClientUrl(_movie);

      string id = (_containerID == null) ? Parent.ClientID : _containerID;

      string jsVar = id + "_SWFObject";

      writer.WriteLine(string.Format("<!-- \"{0}\" with SWFObject START -->", 
          movie));

      writer.WriteBeginTag("script");
      writer.WriteAttribute("type", "text/javascript");
      writer.WriteLine(HtmlTextWriter.TagRightChar);

      writer.WriteLine(string.Format("var {0} = new SWFObject
      ('{1}', '', '{2}', '{3}', '{4}', '');", new object[] 
      { jsVar, movie, _width, _height, _flashVersion }));

      writer.WriteLine(string.Format("with ({0}) {{", jsVar));

      foreach (Control control in Controls) {
         if (control is SWFInput) 
            RenderInput((SWFInput)control, writer);
      }
      
      RenderInput(new SWFParameter("menu", _menu.ToString()), writer);
      if (wmode != WModeEnum.NotSet) 
         RenderInput(new SWFParameter("wmode", wmode.ToString()), writer);

      writer.WriteLine(string.Format("write('{0}');", id));
      writer.WriteLine("}");
      writer.WriteEndTag("script");
      writer.WriteLine();

      writer.Write(string.Format("<!-- \"{0}\" with SWFObject END -->", 
          movie));

   }

   protected virtual void RenderInput(SWFInput input, HtmlTextWriter writer) {

      writer.WriteLine(
         string.Format("add{0}('{1}', '{2}');", 
         ((input is SWFParameter) ? "Param" : "Variable"), 
         input.Name, input.Value)
      );
   }

   #region Nested Types

   public enum WModeEnum { NotSet, Window, Opaque, Transparent }

   #endregion
}

public class SWFParameter : SWFInput {

   public SWFParameter() { }

   public SWFParameter(string name, string value) {
      Name = name;
      Value = value;
   }
}

public class SWFVariable : SWFInput { }

[ParseChildren(true)]
public abstract class SWFInput : Control {
   string _name = "";
   string _value = "";

   public string Name { get { return _name; } set { _name = value; } }
   public string Value { get { return _value; } set { _value = value; } }
}

History

  • 12 Dec, 2006 - Original version posted
  • 21 Dec, 2006 - Updated
  • 15 May, 2007 - Updated

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

maxtoroq

Web Developer

Martinique Martinique

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionSWFObject is undefined ? PinmemberStephanois1421:13 16 Feb '08  
AnswerRe: SWFObject is undefined ? Pinmembermaxtoroq3:48 17 Feb '08  
Your problem is in the OnPreRender method. Copy it again and change "swfobject.js" with the name of your resource, which is "FlashPlayer.swfobject.js" (You don't have to use ResolveClientUrl, just pass the name of the resource). Also make sure your resource was embedded correctly and that the name matches, using Reflector.
GeneralRe: SWFObject is undefined ? PinmemberStephanois147:33 17 Feb '08  
AnswerRe: SWFObject is undefined ? Pinmembermaxtoroq8:13 17 Feb '08  
GeneralRe: SWFObject is undefined ? PinmemberStephanois1410:28 18 Feb '08  
GeneralRe: SWFObject is undefined ? Pinmembermaxtoroq12:06 18 Feb '08  
AnswerRe: SWFObject is undefined ? PinmemberStephanois146:43 20 Feb '08  
QuestionSetting variables in C# rather than ASP.NET PinmemberMarcusNaderus13:27 24 Oct '07  
AnswerRe: Setting variables in C# rather than ASP.NET Pinmembermaxtoroq13:32 24 Oct '07  
QuestionProblem with databinding? Pinmemberjpbosk0:10 3 May '07  
AnswerRe: Problem with databinding? Pinmembermaxtoroq5:03 3 May '07  
QuestionRe: Problem with databinding? Pinmemberjpbosk21:55 10 May '07  
AnswerRe: Problem with databinding? Pinmembermaxtoroq16:25 12 May '07  
QuestionRe: Problem with databinding? Pinmemberjpbosk23:07 20 May '07  
AnswerRe: Problem with databinding? Pinmembermaxtoroq6:20 21 May '07  
GeneralAlternative with full design time support Pinmemberg00fyman22:49 5 Feb '07  
GeneralRe: Alternative with full design time support Pinmembermaxtoroq3:32 6 Feb '07  
GeneralRe: Alternative with full design time support Pinmemberg00fyman11:45 6 Feb '07  
GeneralRe: Alternative with full design time support Pinmembermaxtoroq12:12 6 Feb '07  
GeneralRe: Alternative with full design time support Pinmemberg00fyman13:08 6 Feb '07  
GeneralRe: Alternative with full design time support PinmemberJuan_IBD2:39 22 Mar '07  
GeneralRe: Alternative with full design time support PinmemberMichael B. Hansen19:53 15 May '07  
GeneralRe: Alternative with full design time support Pinmemberg00fyman4:05 16 May '07  
QuestionSending Commands to Flash Pinmembermark_e_mark0:04 18 Jan '07  
AnswerRe: Sending Commands to Flash Pinmembermaxtoroq2:41 18 Jan '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 15 May 2007
Article Copyright 2006 by maxtoroq
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid