i has a datalist view of mp3 songs with play button, so my need is when i click play button that song have to play. please help me how to do??
datalist code is given below:
<asp:DataList ID="DataList1" runat="server" DataKeyField="S_ID"
DataSourceID="SqlDataSourceMP" Font-Bold="False" Font-Names="Agency FB"
Font-Size="Larger" RepeatLayout="Flow">
<SeparatorStyle BorderColor="#CCFFFF" />
<SelectedItemStyle BackColor="#009933" BorderStyle="Groove" />
<ItemTemplate>
songUrl:
<asp:Label ID="songUrlLabel" runat="server" Text='<%# Eval("songUrl","~/Audio/{0}") %>' />
<asp:Button ID="PlayBtn" runat="server" Text ="Play" CommandName="Play" CommandArgument="'<%#~/Audio/{0})%>'" />
<asp:Button ID="StopBtn" runat="server" Text="stop"/>
<asp:HyperLink runat="server" NavigateUrl='<%# Eval("SongUrl","~/Audio/{0}")%>' Text="Download" />
<br />
AlbumName:
<asp:Label ID="AlbumNameLabel" runat="server" Text='<%# Eval("AlbumName") %>' />
<br />
S_ID:
<asp:Label ID="S_IDLabel" runat="server" Text='<%# Eval("S_ID") %>' />
<br />
<br />
</ItemTemplate>
</asp:DataList>
the below code for media player
<OBJECT ID="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab# Version=5,1,52,701" STANDBY="Loading Microsoft Windows® Media Player components..." TYPE="application/x-oleobject" width="280" height="46">
<param name="fileName" value="~Sadi_Gali.mp3">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="Volume" value="-300">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="Sadi_Gali.mp3" name="MediaPlayer1" width=280 height=46 autostart=1 showcontrols=1 volume=-300>
</OBJECT>
plz help me.