-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactionUpdater.aspx
32 lines (30 loc) · 1.1 KB
/
TransactionUpdater.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TransactionUpdater.aspx.cs" Inherits="TransactionUpdater" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>Application CI Code:</td>
<td><asp:TextBox ID="appCICodeField" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td>Script Name:</td>
<td><asp:TextBox ID="scriptNameField" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td>Functionality Name:</td>
<td><asp:TextBox ID="funcNameField" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td><asp:Button ID="updateButton" runat="server" Text="Update Transaction" OnClick="updateButton_Click" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>