frmBdKyCkhzJhrEdit.aspx 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="frmBdKyCkhzJhrEdit.aspx.cs" Inherits="AppFms_Bdky_frmBdKyCkhzJhrEdit" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title>仓库货站-交货人信息维护</title>
  6. <link href="../../Themes/Default/eci.css" rel="stylesheet" />
  7. <!-- #include File="../../App/Common/PageLoad.aspx" -->
  8. <script type="text/javascript">
  9. function addAction() {
  10. if (eci.hasSave()) {
  11. var url = "frmBdKyCkhzJhrEdit.aspx";
  12. window.location.href = url;
  13. }
  14. }
  15. </script>
  16. </head>
  17. <body>
  18. <form id="form1" runat="server">
  19. <input type="hidden" id="hidKey" runat="server" />
  20. <input type="hidden" runat="server" id="hidCkhzGuid" />
  21. <div id="root">
  22. <asp:ETitle runat="server" ID="pagetitle" Title="仓库货站-交货人信息维护"></asp:ETitle>
  23. <div id="toolbar" class="toolbar">
  24. <asp:EButton runat="server" ID="btnSave" Text="保存" NeedCheck="true" ValidateId="tbEdit" OnClick="btnSave_Click" Icon="save" />
  25. <asp:EButton runat="server" ID="btnAdd" Text="新增" Icon="Add" OnClientClick="addAction();" IsClient="true" />
  26. <asp:EButton runat="server" IsClient="true" ID="btnClose" Text="关闭" Icon="close" OnClientClick="eci.close();" />
  27. </div>
  28. <div>
  29. <table id="tbEdit" class="grid" cellpadding="0" cellspacing="0">
  30. <tr>
  31. <th style="width: 10%"></th>
  32. <th style="width: 20%"></th>
  33. <th style="width: 10%"></th>
  34. <th style="width: 20%"></th>
  35. <th style="width: 10%"></th>
  36. <th style="width: 20%"></th>
  37. </tr>
  38. <tr>
  39. <td class="lbl">交货类型</td>
  40. <td>
  41. <asp:ETextBox runat="server" ID="txtJhlx" NotNull="true" DataField="JHLX" Width="85%"></asp:ETextBox></td>
  42. <td class="lbl">交货模板</td>
  43. <td>
  44. <asp:ECombox runat="server" ID="cboJhmb" DataField="JHMB" AddEmpty="true" ECIType="JHTSMB" NotNull="true" Width="85%"></asp:ECombox></td>
  45. <td class="lbl">姓名</td>
  46. <td>
  47. <asp:ETextBox runat="server" ID="txtUserName" DataField="USER_NAME" Width="85%"></asp:ETextBox></td>
  48. </tr>
  49. <tr>
  50. <td class="lbl">电话</td>
  51. <td>
  52. <asp:ETextBox runat="server" ID="txtTel" DataField="TEL" Width="85%"></asp:ETextBox></td>
  53. <td class="lbl">身份证号</td>
  54. <td>
  55. <asp:ETextBox runat="server" ID="txtIdCard" DataField="ID_CARD" Width="85%"></asp:ETextBox></td>
  56. <td class="lbl">安检证号</td>
  57. <td>
  58. <asp:ETextBox runat="server" ID="txtAjzh" DataField="AJZH" Width="85%"></asp:ETextBox></td>
  59. </tr>
  60. <tr>
  61. <td class="lbl">备注</td>
  62. <td colspan="5">
  63. <asp:ETextBox TextMode="MultiLine" Rows="3" runat="server" ID="txtRemark" DataField="REMARK" Width="96%"></asp:ETextBox></td>
  64. </tr>
  65. </table>
  66. </div>
  67. </div>
  68. </form>
  69. </body>
  70. </html>