1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="frmBdKyCkhzJhrEdit.aspx.cs" Inherits="AppFms_Bdky_frmBdKyCkhzJhrEdit" %>
- <!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>
- <link href="../../Themes/Default/eci.css" rel="stylesheet" />
- <!-- #include File="../../App/Common/PageLoad.aspx" -->
- <script type="text/javascript">
- function addAction() {
- if (eci.hasSave()) {
- var url = "frmBdKyCkhzJhrEdit.aspx";
- window.location.href = url;
- }
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <input type="hidden" id="hidKey" runat="server" />
- <input type="hidden" runat="server" id="hidCkhzGuid" />
- <div id="root">
- <asp:ETitle runat="server" ID="pagetitle" Title="仓库货站-交货人信息维护"></asp:ETitle>
- <div id="toolbar" class="toolbar">
- <asp:EButton runat="server" ID="btnSave" Text="保存" NeedCheck="true" ValidateId="tbEdit" OnClick="btnSave_Click" Icon="save" />
- <asp:EButton runat="server" ID="btnAdd" Text="新增" Icon="Add" OnClientClick="addAction();" IsClient="true" />
- <asp:EButton runat="server" IsClient="true" ID="btnClose" Text="关闭" Icon="close" OnClientClick="eci.close();" />
- </div>
- <div>
- <table id="tbEdit" class="grid" cellpadding="0" cellspacing="0">
- <tr>
- <th style="width: 10%"></th>
- <th style="width: 20%"></th>
- <th style="width: 10%"></th>
- <th style="width: 20%"></th>
- <th style="width: 10%"></th>
- <th style="width: 20%"></th>
- </tr>
- <tr>
- <td class="lbl">交货类型</td>
- <td>
- <asp:ETextBox runat="server" ID="txtJhlx" NotNull="true" DataField="JHLX" Width="85%"></asp:ETextBox></td>
- <td class="lbl">交货模板</td>
- <td>
- <asp:ECombox runat="server" ID="cboJhmb" DataField="JHMB" AddEmpty="true" ECIType="JHTSMB" NotNull="true" Width="85%"></asp:ECombox></td>
- <td class="lbl">姓名</td>
- <td>
- <asp:ETextBox runat="server" ID="txtUserName" DataField="USER_NAME" Width="85%"></asp:ETextBox></td>
- </tr>
- <tr>
- <td class="lbl">电话</td>
- <td>
- <asp:ETextBox runat="server" ID="txtTel" DataField="TEL" Width="85%"></asp:ETextBox></td>
- <td class="lbl">身份证号</td>
- <td>
- <asp:ETextBox runat="server" ID="txtIdCard" DataField="ID_CARD" Width="85%"></asp:ETextBox></td>
- <td class="lbl">安检证号</td>
- <td>
- <asp:ETextBox runat="server" ID="txtAjzh" DataField="AJZH" Width="85%"></asp:ETextBox></td>
- </tr>
- <tr>
- <td class="lbl">备注</td>
- <td colspan="5">
- <asp:ETextBox TextMode="MultiLine" Rows="3" runat="server" ID="txtRemark" DataField="REMARK" Width="96%"></asp:ETextBox></td>
- </tr>
- </table>
- </div>
- </div>
- </form>
- </body>
- </html>
|