-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathnntp.aspx
More file actions
43 lines (43 loc) · 2.37 KB
/
nntp.aspx
File metadata and controls
43 lines (43 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%@ Page language="c#" Inherits="inetsuitedemocs.nntp" CodeFile="nntp.aspx.cs" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>nntp</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="cleverstyle.css" type="text/css" rel="stylesheet">
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<h1>Clever Internet .NET suite - NNTP Client Demo</h1>
<p>Receives articles via NNTP protocol.</p>
<hr SIZE="1"/>
<p><asp:label id="Label1" runat="server" Width="80px" Height="24px">Server</asp:label><asp:textbox id="edtServer" runat="server" Width="224px">msnews.microsoft.com</asp:textbox>
<asp:button id="Button1" runat="server" Width="152px" Text="Open" onclick="Button1_Click"></asp:button></p>
<p>
<asp:label id="Label4" runat="server" Width="80px" Height="24px">Newsgroup</asp:label>
<asp:DropDownList ID="cbNewsgroup" runat="server" Width="219px">
</asp:DropDownList>
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Check News"
Width="151px" Enabled="False" /></p>
<p><asp:datagrid id="DataGrid1" runat="server" Width="568px" AutoGenerateColumns="False">
<HeaderStyle CssClass="clsTableTh"></HeaderStyle>
<Columns>
<asp:BoundColumn DataField="Subject" HeaderText="Subject"></asp:BoundColumn>
<asp:BoundColumn DataField="From" HeaderText="From"></asp:BoundColumn>
<asp:BoundColumn DataField="Date" HeaderText="Date"></asp:BoundColumn>
</Columns>
</asp:datagrid> </p>
<hr SIZE="1"/>
<p>For more information about using this component please visit <a target="_blank" href="http://www.clevercomponents.com/products/inetsuite/">
Clever Internet .NET suite</a></p>
<p>For assistance from a human being, feel free to contact at <A target="_blank" href="http://www.clevercomponents.com/support/">
Clever Components Support</A></p>
<p>Copyright © 1999 - 2017 <a class="copyHrefStyle" target="_blank" href="http://www.clevercomponents.com">
http://www.clevercomponents.com</a></p>
</form>
</body>
</HTML>