| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxCloseAddLast.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxCloseAddLast" %>
- <!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="../_common/styles/global.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/dialogs.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/select.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/form.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/controls.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/nav.css" rel="stylesheet" type="text/css" />
- <link href="../_grid/grid.css" rel="stylesheet" type="text/css" />
- <link href="../_grid/AppGrid.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/menu.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/tabs.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="../_javascripts/globalctrl.js"></script>
- <script language="javascript" type="text/javascript">
- function checknull() {
- var ctr = document.getElementById("txtLast");
- if (ctr.value == '') {
- alert(" 不能为空!");
- return false;
- }
- return true;
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <table width="100%" border="0" cellpadding="0" cellspacing="5" align="center" class="stdTable">
- <tr>
- <td align="center">将添加:<asp:TextBox ID="txtLast" runat="server" Width="124px" CssClass="txt"></asp:TextBox>条</td>
- </tr>
- <tr>
- <td align="center">
- <asp:Button ID="btnEdit" runat="server" Text="确定"
- OnClientClick="return checknull();" CssClass="btn" onclick="btnEdit_Click"/>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|