markus / KCOM_API_AutoStamping / AutoApprovalTest.aspx @ 6d6f32bb
이력 | 보기 | 이력해설 | 다운로드 (1.98 KB)
1 | e1c892f7 | taeseongkim | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AutoApprovalTest.aspx.cs" Inherits="KCOM_API_AutoStamping.AutoApprovalTest" %> |
---|---|---|---|
2 | |||
3 | |||
4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
||
5 | <html xmlns="http://www.w3.org/1999/xhtml"> |
||
6 | <head runat="server"> |
||
7 | <title>All Approval Page</title> |
||
8 | <script type="text/javascript" > |
||
9 | |||
10 | </script> |
||
11 | </head> |
||
12 | <body> |
||
13 | <form id="form1" runat="server"> |
||
14 | |||
15 | <div> |
||
16 | <table> |
||
17 | <tr> |
||
18 | <td>Project No :</td> |
||
19 | <td> |
||
20 | 669a91cf | taeseongkim | <%-- <asp:TextBox ID="txtproject_no" runat="server"></asp:TextBox>--%> |
21 | <asp:DropDownList ID="PROJECT_LIST" runat="server" AutoPostBack="true"></asp:DropDownList> |
||
22 | e1c892f7 | taeseongkim | </td> |
23 | <td> |
||
24 | 669a91cf | taeseongkim | <%-- <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" |
25 | e1c892f7 | taeseongkim | ControlToValidate="txtproject_no" ErrorMessage="Project No required" ForeColor="Red"></asp:RequiredFieldValidator> |
26 | 669a91cf | taeseongkim | </td>--%> |
27 | e1c892f7 | taeseongkim | </tr> |
28 | <tr> |
||
29 | <td>Slip No :</td> |
||
30 | <td> |
||
31 | <asp:TextBox ID="txtslip_no" runat="server"></asp:TextBox> |
||
32 | </td> |
||
33 | <td> |
||
34 | <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" |
||
35 | ControlToValidate="txtslip_no" ErrorMessage="Slip No required" ForeColor="Red"></asp:RequiredFieldValidator> |
||
36 | </td> |
||
37 | </tr> |
||
38 | </tr> |
||
39 | <tr> |
||
40 | <td>User ID :</td> |
||
41 | <td> |
||
42 | 669a91cf | taeseongkim | <asp:TextBox ID="txtuser_id" AutoPostBack="true" runat="server"></asp:TextBox> |
43 | e1c892f7 | taeseongkim | </td> |
44 | <td> |
||
45 | <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" |
||
46 | ControlToValidate="txtuser_id" ErrorMessage="User ID required" ForeColor="Red"></asp:RequiredFieldValidator> |
||
47 | </td> |
||
48 | </tr> |
||
49 | </table> |
||
50 | </div> |
||
51 | <p> |
||
52 | <asp:Button ID="Button1" runat="server" Text="All Approval" |
||
53 | onclick="Button1_Click" /> |
||
54 | </p> |
||
55 | </form> |
||
56 | </body> |
||
57 | </html> |