-
Notifications
You must be signed in to change notification settings - Fork 0
/
extentform.aspx
91 lines (88 loc) · 4.28 KB
/
extentform.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<%@ Page Title="" Language="C#" MasterPageFile="~/Setting.Master" AutoEventWireup="true" CodeBehind="extentform.aspx.cs" Inherits="Toollife.extentform" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div align ="center">
<h2>Extend</h2>
</div>
<div id="dataShow" align ="center">
<div class="row"><b>
<div class="col-25">
<label for="macid">MC ID :</label>
<asp:label id="macid" runat="server"></asp:label>
</div>
<div class="col-25">
<label for="toolid">Tool ID :</label>
<asp:label id="toolid" runat="server"></asp:label>
</div>
<div class="col-25">
<label for="part">Part NO :</label>
<asp:label id="part" runat="server"></asp:label>
</div>
</b></div><br />
<div class="row">
<asp:GridView id="ExtendF" runat="server" AllowPaging="true" PageSize="15"
AutoGenerateColumns="False" BackColor="White" BorderColor="#999999"
BorderStyle="None" BorderWidth="1px" CellPadding="3"
GridLines="Vertical"
onrowcommand="ExtendF_RowCommand" DataKeyNames="QC_NO"
onpageindexchanging="ExtendF_PageIndexChanging" >
<AlternatingRowStyle BackColor="#DCDCDC" />
<Columns>
<asp:BoundField DataField="QC_NO" HeaderText="Qualification" SortExpression="QC_NO" />
<asp:ButtonField ButtonType="Button" CommandName="Select" HeaderText="Select" ShowHeader="True"
Text="Select"/>
</Columns>
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" />
<PagerSettings FirstPageText="First" LastPageText="Last" PageButtonCount="5"
Mode="NumericFirstLast" />
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#EEEEEE" ForeColor="Black" Font-Bold="True" />
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#0000A9" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#000065" />
</asp:GridView>
</div>
</div>
<br />
<br />
<div id="addPartSet" runat="server">
<h2 align="center">
Add Extend</h2>
<div class="row"><b>
<div class="col-25">
QC NO
</div>
<div class="col-25">
<asp:TextBox ID="qcno" runat="server" Enabled="False"></asp:TextBox>
</div>
</div></b>
<div class="row"><b>
<div class="col-25">
Result
</div>
<div class="col-25">
<asp:DropDownList ID="qcflag" runat="server" Enabled="False">
<asp:ListItem Text="Pass" Value="Y" />
<asp:ListItem Text="Not Pass" Value="N" />
</asp:DropDownList>
</div></b>
</div>
<div class="row"><b>
<div class="col-25">
Comment
</div>
<div class="col-25">
<asp:TextBox ID="qcaction" runat="server" Enabled="False"></asp:TextBox>
</div></b>
</div>
<div class="row">
<asp:Button ID="saveButton" onclick="savebtn_Click" runat="server" Text="Save" />
<asp:Button ID="backButton" runat="server" Text="Back"
PostBackUrl="~/Part_Status.aspx" onclick="backButton_Click" />
</div>
</div>
</asp:Content>