home *** CD-ROM | disk | FTP | other *** search
ASP.NET Web Form | 2000-06-23 | 2.4 KB | 93 lines |
- <%@ Page Language="C#" %>
- <%@ Assembly Name="Homenet" %>
- <%@ Assembly Name="System" %>
- <%@ Assembly Name="System.Net" %>
- <%@ Import Namespace="System.Runtime.Remoting" %>
- <%@ Import Namespace="System.Net" %>
- <%@ Import Namespace="System.Text" %>
- <%@ Import Namespace="System.IO" %>
- <%@ Import Namespace="System.Collections" %>
- <%@ Import Namespace="Homenet" %>
-
- <html>
-
- <head>
- <script runat="server">
-
-
- void PlayTitle_Click(Object Source, EventArgs E)
- {
- VCR vcr = new VCR();
-
- //String mediaTitle = title.Value;
- String mediaTitle = title.SelectedItem.Value;
- bool ret = vcr.Play(mediaTitle);
- }
-
- void Play_Click(Object Source, EventArgs E)
- {
- Homenet.VCR vcr = new VCR();
- bool ret = vcr.PlaySimple();
- }
-
- void Pause_Click(Object Source, EventArgs E)
- {
- Homenet.VCR vcr = new VCR();
- bool ret = vcr.Pause();
- }
-
- void Stop_Click(Object Source, EventArgs E)
- {
- Homenet.VCR vcr = new VCR();
- bool ret = vcr.Stop();
- }
- </script>
- </head>
-
- <body style="font: 10pt verdana">
- <h3>MyRemoteControl </h3>
-
- <form method="post" runat="server">
-
- <font face="Verdana">
-
- <ASP:Button id="PlayTitle" text="PlayTitle" OnClick="PlayTitle_Click" runat="server" />
-
- <ASP:Button id="Play" text="Play" OnClick="Play_Click" runat="server" />
-
- <ASP:Button id="Pause" text="Pause" OnClick="Pause_Click" runat="server" />
-
- <ASP:Button id="Stop" text="Stop" OnClick="Stop_Click" runat="server" />
-
-
- <table>
- <tr>
- <td><b>Device URL:</b></td>
- <td><ASP:RadioButtonList id=RadioButtonList1 RepeatLayout="Flow" runat="server"><asp:ListItem>Default</asp:ListItem>
- <asp:ListItem>URL</asp:ListItem></ASP:RadioButtonList>
-
- <input id="deviceURL" SIZE="100" VALUE="HTTP://localhost:8080/vcr.soap" TYPE="TEXT" runat="server">
- </td>
- </tr>
-
- <tr>
- <td><b>Title:</b></td>
- <td>
-
- <ASP:DropDownList id="title" runat="server">
- <asp:ListItem >file://C:/winnt/clock.avi</asp:ListItem>
- <asp:ListItem >file://C:/winnt/clock.avi</asp:ListItem>
- </ASP:DropDownList>
-
- </td>
- </tr>
-
-
-
- </table>
- </font>
-
- </form>
-
- </body>
- </html>