flsh in asp.net using C#

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • AmiMitra
    New Member
    • Apr 2009
    • 24

    flsh in asp.net using C#

    i have a flash file "filename.s wf" . i want to embed it in a webpage designed in C#. the flash file contains a slideshow of some selected pictures. i want to embed in such a way that the slideshow will continue in loop for unlimited time. please tell me what to do.
    i have written the code as

    <%@ Page Language="C#" AutoEventWireup ="true" CodeFile="ex2.a spx.cs" Inherits="ex2" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>Untitl ed Page</title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>HI
    <object classid="clsid: d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="http://fpdownload.macr omedia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=7,0,19,0" width="550" height="400" align="middle">
    <param name="allowScri ptAccess" value="sameDoma in" />
    <param name="movie" value="prjB.swf " />
    <param name="quality" value="high" />
    <param name="LOOP" value="true">
    <embed src="C:\Documen ts and Settings\Anomit ra\Desktop\othe rs\prjB.swf" width="550" height="400" loop="true" align="middle" quality="high" bgcolor="#fffff f"
    allowScriptAcce ss="sameDomain " type="applicati on/x-shockwave-flash"
    pluginspage="ht tp://www.macromedia. com/go/getflashplayer" />
    </object>


    </div>
    </form>
    </body>
    </html>


    the output shows only HI at the middle of the page. please help. URGENT!!
Working...