-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptUpdater.aspx
33 lines (33 loc) · 1.23 KB
/
scriptUpdater.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
27
28
29
30
31
32
33
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ScriptUpdater.aspx.cs" Inherits="ScriptUpdater.Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Script Updater</title>
</head>
<body>
<form id="form1" runat="server">
<table align="center">
<tr>
<td>
Select script file:
</td>
<td>
<asp:FileUpload ID="scriptFileUpload" runat="server" />
<asp:RequiredFieldValidator ID="scriptFileUploadValidator" runat="server" ControlToValidate="scriptFileUpload" ErrorMessage="Please select a script file." Display="Dynamic" />
</td>
<td>
<asp:Button ID="browseButton" runat="server" Text="Browse" OnClick="browseButton_Click" />
</td>
</tr>
</table>
<br />
<table align="center">
<tr>
<td colspan="2" align="center">
<asp:Button ID="convertButton" runat="server" Text="Convert" OnClick="convertButton_Click" />
</td>
</tr>
</table>
</form>
</body>
</html>