123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="frmBdHyHgEdit.aspx.cs" Inherits="AppFms_Bdhy_frmBdHyHgEdit" %>
- <!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 = "frmBdHyHgEdit.aspx";
- window.location.href=url;
- }
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <input type="hidden" id="hidKey" runat="server" />
- <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 ="txtCode" DataField="CODE" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">港口中文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtName" DataField="NAME" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">港口英文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtNameEn" DataField="NAME_EN" Width="85%"></asp:ETextBox></td>
- </tr>
- <tr>
- <td class="lbl">城市代码</td>
- <td><asp:ETextBox runat="server" ID ="txtCity" DataField="CITY" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">城市中文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtCityName" DataField="CITY_NAME" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">城市英文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtCityNameEn" DataField="CITY_NAME_EN" Width="85%"></asp:ETextBox></td>
- </tr>
- <tr>
- <td class="lbl">国家代码</td>
- <td><asp:ETextBox runat="server" ID ="txtCountry" DataField="COUNTRY" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">国家中文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtCountryName" DataField="COUNTRY_NAME" NotNull="true" Width="85%"></asp:ETextBox></td>
- <td class="lbl">国家英文名称</td>
- <td><asp:ETextBox runat="server" ID ="txtCountryNameEn" DataField="COUNTRY_NAME_EN" Width="85%"></asp:ETextBox></td>
- </tr>
- </table>
- </div>
- </div>
- </form>
- </body>
- </html>
|