-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.aspx
26 lines (24 loc) · 906 Bytes
/
Default.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>AVCP Records Generator C#.NET</h1>
<asp:Panel ID="pnlSuccess" runat="server" Visible="false">
<p>
Dataset Generated!
</p>
<p><a target="_blank" href="XML/dataset.xml">XML/dataset.xml</a></p>
<p><a target="_blank" href="XML/index.xml">XML/index.xml</a></p>
</asp:Panel>
<asp:Panel ID="pnlError" runat="server" Visible="false">
<asp:Label ID="lblException" runat="server" Text=""></asp:Label>
</asp:Panel>
</div>
</form>
</body>
</html>