-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathhtmlparser.aspx
More file actions
33 lines (33 loc) · 1.79 KB
/
htmlparser.aspx
File metadata and controls
33 lines (33 loc) · 1.79 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
<%@ Page language="c#" Inherits="inetsuitedemocs.htmlparser" CodeFile="htmlparser.aspx.cs" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>htmlparser</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 - HTML Parser Demo</h1>
<hr SIZE="1">
<p><asp:label id="Label1" runat="server" Width="176px" Height="24px">URL to download and parse</asp:label><asp:textbox id="edtUrl" runat="server" Width="391px"></asp:textbox>
<asp:button id="Button1" runat="server" Width="47px" Text="GO" onclick="Button1_Click"></asp:button></p>
<p><asp:datagrid id="DataGrid1" runat="server" Width="568px" AutoGenerateColumns="False">
<HeaderStyle CssClass="clsTableTh"></HeaderStyle>
<Columns>
<asp:BoundColumn DataField="Url" HeaderText="Extracted URLs"></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>