how to embed a flash in html by Csharp

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Wu

    how to embed a flash in html by Csharp

    Hello,

    I have to embed a flash in a html email by csharp. Don't you know how to do
    it? I found some source in code project, but the activeX does not able to
    run at default security level.

    Please advice.

    Wu


  • =?Utf-8?B?Q2lhcmFuIE8nJ0Rvbm5lbGw=?=

    #2
    RE: how to embed a flash in html by Csharp

    I dont think most email readers will allow this at all. You would propbably
    need to iframe to a web page or something but even that might not work. What
    do you want to achieve with the flash. If its simple animation then a moving
    gif might be better

    --
    Ciaran O''Donnell
    try{ Life(); } catch (TooDifficultException) { throw Toys(); }



    "Wu" wrote:
    Hello,
    >
    I have to embed a flash in a html email by csharp. Don't you know how to do
    it? I found some source in code project, but the activeX does not able to
    run at default security level.
    >
    Please advice.
    >
    Wu
    >
    >
    >

    Comment

    • Ignacio Machin ( .NET/ C# MVP )

      #3
      Re: how to embed a flash in html by Csharp

      On Sep 25, 9:50 am, "Wu" <wuchun...@gmai l.comwrote:
      Hello,
      >
      I have to embed a flash in a html email by csharp. Don't you know how to do
      it? I found some source in code project, but the activeX does not able to
      run at default security level.
      >
      Please advice.
      >
      Wu
      First of all this has nothing to do with C#.

      You can embed anything in a HTML email, it is responsability of the
      email viewer to allow it to run or not. Most of them though do not
      allow any ActiveX to run. Some are as restrictive that do not allow
      linked images to be displayed.

      Comment

      • Wu

        #4
        Re: how to embed a flash in html by Csharp

        Hello Machin,

        I want to embed and do a page load to send the acknowledgement back to the
        sender when the receipt open it.

        Is there any better to do it?

        Thanks

        Wu

        "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin @gmail.comwrote in
        message
        news:f477d109-bf9e-4f1b-90a2-b9ce1aa9743b@j2 2g2000hsf.googl egroups.com...
        On Sep 25, 9:50 am, "Wu" <wuchun...@gmai l.comwrote:
        >Hello,
        >>
        >I have to embed a flash in a html email by csharp. Don't you know how to
        >do
        >it? I found some source in code project, but the activeX does not able
        >to
        >run at default security level.
        >>
        >Please advice.
        >>
        >Wu
        >
        First of all this has nothing to do with C#.
        >
        You can embed anything in a HTML email, it is responsability of the
        email viewer to allow it to run or not. Most of them though do not
        allow any ActiveX to run. Some are as restrictive that do not allow
        linked images to be displayed.

        Comment

        • Ignacio Machin ( .NET/ C# MVP )

          #5
          Re: how to embed a flash in html by Csharp

          On Sep 25, 8:32 pm, "Wu" <wuchun...@gmai l.comwrote:
          Hello Machin,
          >
          I want to embed and do a page load to send the acknowledgement back to the
          sender when the receipt open it.
          >
          Is there any better to do it?
          >
          Thanks
          Most of the mail clients will forbid you doing this, it's just basic
          protection. If it would been allowed then a spammer can know if an
          email address is valid, it can add a Guid value in the request that
          can match with the original email address.

          You should do it in another way. You should put a link in the page
          that the user should click and then open the real page with all the
          flash and other stuff you want.

          Comment

          Working...