Click here to Skip to main content
15,880,503 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: add new location by google in asp.net project Pin
fjdiewornncalwe27-Sep-11 6:23
professionalfjdiewornncalwe27-Sep-11 6:23 
QuestionTemplate in asp.net Pin
MalarGayu26-Sep-11 18:23
MalarGayu26-Sep-11 18:23 
AnswerRe: Template in asp.net Pin
Pravin Patil, Mumbai26-Sep-11 18:54
Pravin Patil, Mumbai26-Sep-11 18:54 
GeneralRe: Template in asp.net Pin
MalarGayu26-Sep-11 19:34
MalarGayu26-Sep-11 19:34 
GeneralRe: Template in asp.net Pin
Pravin Patil, Mumbai27-Sep-11 1:50
Pravin Patil, Mumbai27-Sep-11 1:50 
QuestionSingle Signon Implementation in ASP.NET ( Different Domains with two different applications ) Pin
PrasanthSP26-Sep-11 15:11
PrasanthSP26-Sep-11 15:11 
Questionplay video on myweb page Pin
apadana_198926-Sep-11 14:07
apadana_198926-Sep-11 14:07 
AnswerRe: play video on myweb page Pin
uspatel26-Sep-11 23:32
professionaluspatel26-Sep-11 23:32 
use
C#
<object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" id="Player1">

        <param name="URL" value="http://localhost/Music.wmv">

        <param name="http://path_to_the_video">

        <param name="AutoStart" value="1">

        <param name="ShowControls" value="1">

        <param name="ShowStatusBar" value="1">

        <param name="ShowDisplay" value="1">

        <param name="stretchToFit" value="1">

        <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
C#
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());
       }

   }

Questionoverride to master page Pin
Member 821751726-Sep-11 8:53
Member 821751726-Sep-11 8:53 
AnswerRe: override to master page Pin
Not Active27-Sep-11 6:04
mentorNot Active27-Sep-11 6:04 
Questionpost build even with xcopy Pin
byka26-Sep-11 8:18
byka26-Sep-11 8:18 
AnswerRe: post build even with xcopy Pin
Richard MacCutchan26-Sep-11 21:25
mveRichard MacCutchan26-Sep-11 21:25 
Questionmaster pages 2010 Pin
Member 821751726-Sep-11 5:51
Member 821751726-Sep-11 5:51 
AnswerRe: master pages 2010 Pin
Not Active26-Sep-11 6:03
mentorNot Active26-Sep-11 6:03 
QuestionSql Query for binary tree Pin
avanish upadhyay25-Sep-11 23:40
avanish upadhyay25-Sep-11 23:40 
QuestionSPAM attack double quotes in url crash site Pin
Rizwan Bashir24-Sep-11 4:40
Rizwan Bashir24-Sep-11 4:40 
AnswerRe: SPAM attack double quotes in url crash site Pin
Bernhard Hiller25-Sep-11 23:31
Bernhard Hiller25-Sep-11 23:31 
GeneralRe: SPAM attack double quotes in url crash site Pin
Rizwan Bashir25-Sep-11 23:35
Rizwan Bashir25-Sep-11 23:35 
QuestionTrigger in asp.net Pin
sheemap23-Sep-11 21:44
sheemap23-Sep-11 21:44 
AnswerRe: Trigger in asp.net Pin
Parwej Ahamad23-Sep-11 21:54
professionalParwej Ahamad23-Sep-11 21:54 
GeneralRe: Trigger in asp.net Pin
sheemap23-Sep-11 22:01
sheemap23-Sep-11 22:01 
GeneralRe: Trigger in asp.net Pin
Parwej Ahamad23-Sep-11 22:03
professionalParwej Ahamad23-Sep-11 22:03 
GeneralRe: Trigger in asp.net Pin
sheemap23-Sep-11 22:11
sheemap23-Sep-11 22:11 
GeneralRe: Trigger in asp.net Pin
Rizwan Bashir24-Sep-11 4:47
Rizwan Bashir24-Sep-11 4:47 
GeneralRe: Trigger in asp.net Pin
sheemap24-Sep-11 5:04
sheemap24-Sep-11 5:04 

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

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