Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. play video on myweb page

play video on myweb page

Scheduled Pinned Locked Moved ASP.NET
csharpasp-nettutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    apadana_1989
    wrote on last edited by
    #1

    hi i want show the video on the asp.net page please guide me thank you

    U 1 Reply Last reply
    0
    • A apadana_1989

      hi i want show the video on the asp.net page please guide me thank you

      U Offline
      U Offline
      uspatel
      wrote on last edited by
      #2

      use

          <embed runat="Server" id="embed1" type="application/x-mplayer2"
      

      pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"

      width="424" height="379"

      autostart="1" showcontrols="1" showstatusbar="1">

      </embed>

      </object>

      this code to show media player.
      and to play and provide urll to the video

      protected void DataList1_ItemCommand1(object source, DataListCommandEventArgs e)
      {
      try
      {
      if (e.CommandName == "select")
      {
      embed1.Attributes.Add("src", @"http://~/Uploads4/");
      embed1.Attributes.Add("filename", Server.MapPath(e.CommandArgument.ToString()));
      this.modal1.Show();
      }
      }
      catch (Exception ex)
      {
      Response.Write(ex.ToString());
      }

      }
      
      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups