-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
20 lines (19 loc) · 747 Bytes
/
Copy pathDefault.aspx
File metadata and controls
20 lines (19 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="runJob" runat="server" OnClick="runJob_Click" Text="Run!" Width="600px"
Height="200px" Style="cursor: pointer;" />
<br />
<asp:Label ID="doneLabel" runat="server"></asp:Label>
<br />
<asp:Label ID="totalLabel" runat="server"></asp:Label>
</div>
</form>
</body>
</html>